dianakko

floating image

Oct 21st, 2021
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1.  
  2.  
  3. <style>
  4. .image {
  5. animation-name: floating;
  6. animation-duration: 3s;
  7. animation-iteration-count: infinite;
  8. animation-timing-function: ease-in-out;
  9. }
  10.  
  11. @keyframes floating {
  12. 0% { transform: translate(0, 0px); }
  13. 50% { transform: translate(0, 15px); }
  14. 100% { transform: translate(0, -0px); }
  15. }
  16.  
  17. </style>
  18.  
  19. <img src="https://64.media.tumblr.com/af0ba9cfc8ec4fce0371acc3f2a5fb5d/8c436493c1c20170-f4/s540x810/b408af581d440ddc4b72833f25095f4b1b926bef.jpg
  20. " class="image" style="width: 30%">
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment