Advertisement
kyujouz

bouncy text 1

Mar 10th, 2024
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <Style>
  2. .bouncyyy {
  3. font-size: 1.5em;
  4. display: inline-block;
  5. font-family: lovely;
  6. color: #854234;
  7. z-index: 99;
  8. animation: bounce 3s infinite;
  9. animation-timing-function: cubic-bezier(0.25, 0.85, 0.4, 1);
  10. width:auto;
  11. ;}
  12.  
  13. .letterone { animation-delay:0s; display:inline-block;}
  14. .lettertwo { animation-delay:0.2s; display:inline-block;}
  15. .letterthree { animation-delay:0.4s; display:inline-block; }
  16. .letterfour { animation-delay:0.6s; display:inline-block;}
  17. .letterfive { animation-delay:0.8s; display:inline-block;}
  18. .lettersix { animation-delay:1s; display:inline-block;}
  19. .letterseven { animation-delay:1.2s; display:inline-block;}
  20. .lettereight { animation-delay:1.4s; display:inline-block;}
  21.  
  22. @keyframes
  23. bounce {
  24. 0% {
  25. transform: scale(1,1) translateY(0); }
  26. 10% {
  27. transform: scale(1.1,.9) translateY(0);
  28. }
  29. 30% { transform: scale(.9,1.1) translateY(-10px);
  30. }
  31. 50% {
  32. transform: scale(1.05,.95) translateY(0); }
  33. 60% {
  34. transform: scale(1,1) translateY(-4px);
  35. }
  36. 100% { transform: scale(1,1) translateY(0);
  37. }
  38. }
  39. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement