JSFiddle - React, Tailwind, and code Playground

by defmetalhead

HTML

<div id="fadeIn" style="color: #000"></div>
<div class="odd"></div>
<div></div>
<div class="odd"></div>

CSS

div {
	display: none;
	height: 100px;
	width: 100px;
	float: left;
	background: blue;
}
div.odd {
	background: red;
}

JavaScript

$('div').each(function(index) {
	$(this).delay(400*index).fadeIn(1000);
});