JSFiddle - React, Tailwind, and code Playground

by jeevankk

HTML

<html>
    <head>
    </head>
    <body>
        <div id="main">
        </div>
    </body>
</html>

CSS

#main
{
    left:0px;
    top:0px;
    width:100px;
    height:100px;
    position:fixed;
    background:red;
}

JavaScript

$('#main').animate({
    width:200,
    top:200,
    left:200,
    height:200
},200);