Advertisement
Guest User

Untitled

a guest
May 25th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. @keyframes rotate-element {
  2. 0% {transform: rotate(0);}
  3. 25% {transform: rotate(90);}
  4. 50% {transform: rotate(180);}
  5. 75% {transform: rotate(270);}
  6. 100%{transform: rotate(360);}
  7. }
  8.  
  9. #clock {
  10. animation-name: rotate-element;
  11. animation-duration: 10s;
  12. animation-iteration-count: infinite;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement