Advertisement
dracslaura

bouncy text

Oct 12th, 2021
3,016
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <Style>
  2. .bouncyyy {font-size:2em; z-index: 99; animation: bounce 2s infinite; animation-timing-function: cubic-bezier(0.25, 0.85, 0.4, 1) width:auto; ;}
  3.  
  4. .letterone { animation-delay:0.1s; display:inline-block;}
  5. .lettertwo { animation-delay:0.2s; display:inline-block;}
  6. .letterthree { animation-delay:0.4s; display:inline-block; }
  7. .letterfour { animation-delay:0.6s; display:inline-block;}
  8. .letterfive { animation-delay:0.8s; display:inline-block;}
  9. .lettersix { animation-delay:1s; display:inline-block;}
  10. .letterseven { animation-delay:1.2s; display:inline-block;}
  11. .lettereight { animation-delay:1.4s; display:inline-block;}
  12. .letternine { animation-delay:1.6s; display:inline-block;}
  13. .letterten { animation-delay:1.8s; display:inline-block;}
  14.  
  15. @keyframes bounce { 0% { transform: scale(1,1) translateY(0); } 10% { transform: scale(1.1,.9) translateY(0); } 30% { transform: scale(.9,1.1) translateY(-30px); } 50% { transform: scale(1.05,.95) translateY(0); } 60% { transform: scale(1,1) translateY(-4px); } 100% { transform: scale(1,1) translateY(0); } }</style>
  16.  
  17. <a href="https://pastebin.com/8KpDmX17">
  18. <p class="bouncyyy letterone">B</p><p class="bouncyyy lettertwo">o</p><p class="bouncyyy letterthree">u</p><p class="bouncyyy letterfour">n</p><p class="bouncyyy letterfive">c</p><p class="bouncyyy lettersix">y</p> <p class="bouncyyy letterseven">T</p> <p class="bouncyyy lettereight">e</p><p class="bouncyyy letternine">x</p> <p class="bouncyyy letterten">t</p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement