I've been experimenting with creating a random number and having the border-radius of my div change on every pageload:
<script>
$(".card-body").each(function(){
var rand = Math.floor(Math.random() * 100) + 1;
$(this).css( { borderRadius: rand } );
});
</script>
Is there a way to set the border radius similar to this css style?
border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;}