Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. @-moz-keyframes spin {
  2.     from { -moz-transform: rotate(0deg); }
  3.     to { -moz-transform: rotate(360deg); }
  4. }
  5. @-webkit-keyframes spin {
  6.     from { -webkit-transform: rotate(0deg); }
  7.     to { -webkit-transform: rotate(360deg); }
  8. }
  9. @keyframes spin {
  10.     from {transform:rotate(0deg);}
  11.     to {transform:rotate(360deg);}
  12. }
  13.  
  14. * {
  15.   transform: rotate(90deg);
  16.   animation: spin;
  17.   animation-duration: 2s;
  18.   animation-iteration-count: infinite;
  19.   font-family: "Comic Sans MS", "Times New Roman", serif;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement