JSFiddle - React, Tailwind, and code Playground
by darcyclarke
HTML
<div class="container">
<div class="box"></div>
</div>
CSS
.container {
width: 100%;
height: 50px;
background: red;
position: relative;
}
.box {
width: 50px;
height: 50px;
background: blue;
position: absolute;
right: 0;
}
JavaScript
$('.box').on('click', function(e){
$(this).animate({left:0},500);
});