JSFiddle - React, Tailwind, and code Playground
by yoowordpress
HTML
<div id="toggle"></div>
<div id="sss">ssssssssss</div>
CSS
#toggle {
width: 100px;
height: 100px;
background: #ccc;
display:none;
}
#sss{position:absolute;
top:250px;}
JavaScript
$('#sss').hover(
function(){
$('#toggle').show( "puff");
},
function(){
$('#toggle').hide("puff");
});