JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
CSS
div {
margin-top: 100px;
height: 100px;
width: 100px;
background: red;
}
JavaScript
$('div')
.css('opacity', 0)
.animate(
{ opacity: 1, marginTop: 0 },
{ queue: false, duration: 'slow' }
);