Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. #container { margin: 10%; }
  2.  
  3. #circle { position: relative; width: 50%; overflow: hidden; }
  4.  
  5. #circle text { font-family: 'Helvetica Neue', Arial; font-size: 16px; font-weight: bold; }
  6.  
  7. #circle svg { position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  8.  
  9. -webkit-animation-name: rotae;
  10. -moz-animation-name: rotae;
  11. -ms-animation-name: rotae;
  12. -o-animation-name: rotae;
  13. animation-name: rotae;
  14. -webkit-animation-duration: 5s;
  15. -moz-animation-duration: 5s;
  16. -ms-animation-duration: 5s;
  17. -o-animation-duration: 5s;
  18. animation-duration: 5s;
  19. -webkit-animation-iteration-count: infinite;
  20. -moz-animation-iteration-count: infinite;
  21. -ms-animation-iteration-count: infinite;
  22. -o-animation-iteration-count: infinite;
  23. animation-iteration-count: infinite;
  24. -webkit-animation-timing-function: linear;
  25. -moz-animation-timing-function: linear;
  26. -ms-animation-timing-function: linear;
  27. -o-animation-timing-function: linear;
  28. animation-timing-function: linear;
  29.  
  30. }
  31.  
  32. @-webkit-keyframes rotate {
  33. from { -webkit-transform: rotate(360deg); }
  34. to { -webkit-transform: rotate(0); }
  35. }
  36. @-moz-keyframes rotate {
  37. from { -moz-transform: rotate(360deg); }
  38. to { -moz-transform: rotate(0); }
  39. }
  40. @-ms-keyframes rotate {
  41. from { -ms-transform: rotate(360deg); }
  42. to { -ms-transform: rotate(0); }
  43. }
  44. @-o-keyframes rotate {
  45. from { -o-transform: rotate(360deg); }
  46. to { -o-transform: rotate(0); }
  47. }
  48. @keyframes rotate {
  49. from { transform: rotate(360deg); }
  50. to { transform: rotate(0); }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement