JSFiddle - React, Tailwind, and code Playground
by Brodingo
HTML
<div style="width:100px;height:100px;background:#ddd"/>
JavaScript
$(function(){
$('div').animate({width: 200, height: 200, opacity: 0.4}, {duration: 5000});
});
by Brodingo
<div style="width:100px;height:100px;background:#ddd"/>
$(function(){
$('div').animate({width: 200, height: 200, opacity: 0.4}, {duration: 5000});
});