Advertisement
vaninoe

image float

Nov 16th, 2021
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <style>
  2.  
  3. #float {
  4. animation-name: floating;
  5. animation-duration: 3s;
  6. animation-iteration-count: infinite;
  7. animation-timing-function: ease-in-out;
  8. }
  9.  
  10. @keyframes floating {
  11. 0% { transform: translate(0, 0px); }
  12. 50% { transform: translate(0, 15px); }
  13. 100% { transform: translate(0, -0px); }
  14. }
  15.  
  16. </style>
  17. <div id="float">
  18. <img src="Your Image Here">
  19. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement