Advertisement
dianakko

imagen pop pero con medidas

Oct 20th, 2021
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <style>
  2. .imagen {
  3. height: 100px;
  4. width: 100px;
  5. float: right;
  6. animation-name: floating;
  7. animation-duration: 3s;
  8. animation-iteration-count: infinite;
  9. animation-timing-function: ease-in-out;
  10. filter: saturate(100%); transition: all 0.01s ease;
  11. }
  12.  
  13. img:hover { filter: saturate(0%);}
  14.  
  15. @keyframes floating {
  16. 0% { transform: translate(0, 0px); }
  17. 50% { transform: translate(0, 15px); }
  18. 100% { transform: translate(0, -0px); }
  19. }
  20.  
  21.  
  22. </style>
  23.  
  24. <img src="https://64.media.tumblr.com/1f2d81472f0476d82cc222b269d773d8/tumblr_osu0r3yF3K1w4fe0do1_500.jpg" class="imagen">
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement