JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">ABC</div>
CSS
.box
{
background-color:#188f9c;
left:0;
height:20px;
width:300px;
}
JavaScript
$(document).ready(function(){
$('.box').css("margin-left",-$(this).width())
.animate({
marginLeft:0
}, 700);
});