JSFiddle - React, Tailwind, and code Playground

by Lacuna Software

HTML

<img src="http://www.google.com/images/srpr/logo3w.png" />

CSS

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

img {
   animation: 1s ease-out 0s 1 blink;
}