Advertisement
nomskoo

floating img

Apr 1st, 2024
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <style>
  2. #float {
  3. animation-name: floating;
  4. animation-duration: 3s;
  5. animation-iteration-count: infinite;
  6. animation-timing-function: ease-in-out;
  7. }
  8.  
  9. @keyframes floating {
  10. 0% { transform: translate(0, 0px); }
  11. 50% { transform: translate(0, 15px); }
  12. 100% { transform: translate(0, -0px); }
  13. }
  14. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement