Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. @keyframes spin {
  2. from {
  3. transform: rotate(0deg);
  4. }
  5. to {
  6. transform: rotate(360deg);
  7. }
  8. }
  9. .spin {
  10. animation-name: spin;
  11. animation-duration: 10ms;
  12. animation-iteration-count: infinite;
  13. animation-timing-function: linear;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement