JSFiddle - React, Tailwind, and code Playground

by charlescarver

HTML

<div id="img"></div>

CSS

body{
    background:#343434;
}

#img{
    background:url(http://www.queness.com/resources/images/9150.gif);
    width:23px;
    height:23px;
    background-size:100px;
    background-position:-40px -21px;
    -webkit-animation:loading linear 3s infinite;
}

@-webkit-keyframes loading {
	0% {
	    -webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform:rotate(360deg);
	}
}