JSFiddle - React, Tailwind, and code Playground

HTML

<p>my animation code</p>
<img id="me" src="http://www.sapdesignguild.org/editions/highlight_articles_02/images/busy/loading_anim.gif">

CSS

#me {
    -webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}