Don't know where to look?

You can search all my notes here

Infinitely rotating element

css
.el {
  animation: rotating 1s infinite linear;
}

@keyframes rotating {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

Comments

Post-Meta
  • Published: July 21, 2019
  • Last modified: July 21, 2019
  • Tags: animation