JSFiddle - React, Tailwind, and code Playground
by joplomacedo
HTML
<div></div>
<div class="is-animated"></div>
<div></div>
CSS
div {
height: 200px;
width: 200px;
margin-bottom: 20px;
background-color: blue;
}
div.is-animated {
animation: rotateAntiClock 15s linear infinite;
}
@keyframes rotateAntiClock {
0% {
transform: rotateZ(0);
}
100% {
transform: rotateZ(-360deg);
}
}