Infinitely rotating element
css
.el {
animation: rotating 1s infinite linear;
}
@keyframes rotating {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}
Post-Meta
- Published: July 21, 2019
- Last modified: July 21, 2019
- Tags: animation
Comments