JSFiddle - React, Tailwind, and code Playground
by rwaldin
HTML
<img class="image" src="http://makeameme.org/media/templates/120/grumpy_cat.jpg" alt="" width="120" height="120">
CSS
.image {
position: absolute;
top: 50%;
left: 50%;
width: 120px;
height: 120px;
opacity: 1;
margin:-60px 0 0 -60px;
-webkit-animation: linear infinite;
-webkit-animation-name: spin, fade;
-webkit-animation-duration: 2s, 4s;
}
@-webkit-keyframes spin {
100% {
transform: rotate(180deg);
}
}
@-webkit-keyframes fade {
100% {
opacity: 0;
}
}