JSFiddle - React, Tailwind, and code Playground

by ayaz shah

HTML

<div class="layout">Hover It</div>
<div class="hoverDiv"></div>

CSS

.hoverDiv{width:50px; height:50px; background:#ff0000;}

JavaScript

setTimeout(function(){
			$(".layout").addClass('startAnimation');
		}, 500);
$('.hoverDiv').hide();
$('.startAnimation').hover(function(){
	$('.hoverDiv').show();
});