JSFiddle - React, Tailwind, and code Playground
by dylanjha
HTML
<div id="grow">
</div>
CSS
#grow {
background-color: blue;
width: 2px;
height: 30px
}
JavaScript
$(function(){
var growit = function(){
$('#grow').animate({'width': '+=10px' });
}
if($('#grow').width() < 200){
growit();
}
})