Advertisement
loveberry

floating

May 20th, 2023 (edited)
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <style>
  2. .float {
  3. font-size:2em;
  4. color: #000;
  5. animation-name: floating;
  6. animation-duration: 3s;
  7. animation-iteration-count: infinite;
  8. animation-timing-function: ease-in-out;
  9. }
  10. @keyframes floating {
  11. 0% { transform: translate(0, 0px); }
  12. 50% { transform: translate(0, 15px); }
  13. 100% { transform: translate(0, -0px); }
  14. }
  15. </style>
  16.  
  17. <div class="float">floating</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement