JSFiddle - React, Tailwind, and code Playground
HTML
<div>Here</div>
<div>Here</div>
<div>Here</div>
<div>Here</div><div>Here</div>
<div>Here</div>
<div>Here</div><div>Here</div>
JavaScript
$("div").each(function(i, e) {
$(this).delay(i*400).fadeIn(function() {
$(this).delay(i*400).fadeOut();
});
});