JSFiddle - React, Tailwind, and code Playground
by Narcis
HTML
<div class="blue"></div>
CSS
.blue{
position:absolute;
top:100px;left:100px;
width:100px;height:100px;
background-color:blue;
cursor:pointer;
right:
}
JavaScript
$(function(){
$(".blue").click(function() {
$(".blue").animate({left: "0"}, 500)
});
})