Advertisement
dianakko

imagen que da vueltas erika crd

Oct 21st, 2021
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <style>
  2. .spinning {
  3. animation-name: spin;
  4. animation-duration: 1500ms; /* How long lasts 1 turn */
  5. animation-iteration-count: infinite;
  6. animation-timing-function: linear;
  7. }
  8.  
  9. @keyframes spin {
  10. from {
  11. transform:rotate(0deg);
  12. }
  13. to {
  14. transform:rotate(360deg);
  15. }
  16. }
  17. </style>
  18.  
  19. <img src="https://data.whicdn.com/images/354244668/original.jpg" class="spinning">
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement