JSFiddle - React, Tailwind, and code Playground
by kachibito
HTML
<div id="foo">Fadeout....</div>
CSS
#foo{
background: #eee ;
margin:25px;
padding:25px;
width: 200px ;
}
JavaScript
setTimeout(function() {
$('#foo').fadeOut();
}, 5000);