JSFiddle - React, Tailwind, and code Playground

by mohammadAdil

HTML

<div class="element"></div>

CSS

.element{width:200px;height:200px;background:blue}

JavaScript

$(".element").css({
    opacity: 0,
    visibility: 'visible',
    marginTop: 200
}).animate({
    marginTop: 0,
    opacity: 1
});