Advertisement
powylv

bouncy text

Dec 22nd, 2022 (edited)
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <style>
  2. .bounce {
  3. position: relative;
  4. top: 0;
  5. animation: bounce 0.3s ease infinite alternate;
  6. }
  7.  
  8. @keyframes bounce {
  9. 100% {
  10. top: -.2rem;
  11. }
  12. }
  13. </style>
  14.  
  15. <div class="bounce">bounce!</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement