JSFiddle - React, Tailwind, and code Playground
by jjppof
HTML
<img src="http://www.w3schools.com/html/pic_mountain.jpg">
CSS
img{
-webkit-animation: fade 2s 0s 1, bright 1s 2s infinite alternate;
}
@keyframes fade {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes bright {
from {-webkit-filter: brightness(1);}
to {-webkit-filter: brightness(3);}
}