JSFiddle - React, Tailwind, and code Playground
by Victor
HTML
<div class="thing"></div>
CSS
.thing {
background:red;
width:20px;
height:20px;
margin-left:50px;
margin-top:50px;
position:relative;
top:0;
}
JavaScript
$(".thing").animate({"top":"-20"},300).animate({"top":"20"},250).animate({"top":"0"},500);