Maybe not the best way, but alternatively you can use animated keyframes (which is better if you want to constantly repeat the animation):
@keyframes rotateDiv {
from { transform: rotateZ(0deg); }
to { transform: rotateZ(360deg); }
}
div {
animation-name: rotateDiv;
animation-duration: 1s;
animation-timing-function: linear;
animation-delay: 0s;
animation-iteration-count: infinite;
}
source
share