Advertisement
kyujouz

spinning element

Sep 14th, 2021
5,351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <style>
  2.  
  3. #image01 {
  4. -webkit-animation:spin 3s linear infinite;
  5. -moz-animation:spin 3s linear infinite;
  6. animation:spin 3s linear infinite;
  7. }
  8. @-moz-keyframes spin {
  9. 100% { -moz-transform: rotate(360deg); }
  10. }
  11. @-webkit-keyframes spin {
  12. 100% { -webkit-transform: rotate(360deg); }
  13. }
  14. @keyframes spin {
  15. 100% {
  16. -webkit-transform: rotate(360deg);
  17. transform:rotate(360deg);
  18. }
  19. }
  20. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement