JSFiddle - React, Tailwind, and code Playground

by secretgspot

HTML

<img src="http://kuzya.com/_img/logo/logo.png">
<img src="http://kuzya.com/_img/logo/logo.png">
<img src="http://kuzya.com/_img/logo/logo.png">
<img src="http://kuzya.com/_img/logo/logo.png">

CSS

img {
     background: red;  
     -webkit-animation: super-rainbow 5s infinite alternate linear; 
}

@-webkit-keyframes super-rainbow {
    0%   { background: red; } 
    20%  { background: orange; }
    40%  { background: yellow; }
    60%  { background: green; }
    80%  { background: blue; }
    100% { background: violet; }
}

img:nth-of-type(2) { -webkit-animation-delay: 1s; }
img:nth-of-type(3) { -webkit-animation-delay: 2s; }
img:nth-of-type(4) { -webkit-animation-delay: 3s; }