JSFiddle - React, Tailwind, and code Playground
by B L Praveen
HTML
<div id="cell1"></div>
<br/>
<div id="cell2"></div>
<br/>
<div id="cell3"></div>
CSS
@-webkit-keyframes pulse
{
0% {background-color: #45CEEF;}
25% {background-color: #FFF5A5;}
50% {background-color: #FFD4DA;}
75% {background-color: #99D2E4;}
100% {background-color: #D8CAB4;}
}
#cell1
{
width:100px;
height:100px;
-webkit-animation: pulse 35s infinite;
}
#cell2
{
width:100px;
height:100px;
-webkit-animation: pulse 35s ease -3s infinite;
}
#cell3
{
width:100px;
height:100px;
-webkit-animation: pulse 35s ease -5s infinite;
}