JSFiddle - React, Tailwind, and code Playground

by Derek Leung

HTML

<div id="box1"></div>

CSS

#box1{
    width: 100px;
    height: 100px;
    background: green;    
    position: absolute;
}

JavaScript

$("#box1").animate({
    left: '+=150',
    top: '+=150'
}, 1000);