JSFiddle - React, Tailwind, and code Playground
by Mehmet Alp
HTML
<div class="test"></div>
CSS
.test{width:100px;height:100px;background:#ccc;}
JavaScript
$(".test").animate({
opacity:0,
duration: 10000
},{
complete: function(){
$(".test").animate({opacity:1},5000);}
},5000);