JSFiddle - React, Tailwind, and code Playground
HTML
<div id="myContainer">Hello!</div>
CSS
#myContainer {
position : absolute;
left : -2000px;
height : 300px;
width : 300px;
background-color : pink;
}
JavaScript
$('#myContainer').animate({
left : '100px'
}, 1000, 'easeInOutBounce');