JSFiddle - React, Tailwind, and code Playground

by tenshimsm

HTML

<div style="background-color:#ddd" class="div1">
<p>Div 1</p>
</div>

CSS

.div1 {
    display:none;
    width:200px;
    height:200px
}

JavaScript

$('.div1').hide().show('scale', {
  duration: 1000,
  easing: 'easeOutBounce', 
});