Advertisement
GIFCITY

bouncing text

Nov 16th, 2021 (edited)
1,079
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <style>
  2. .bouncing {
  3.  
  4.  
  5. animation: bounce 2s infinite;
  6. animation-timing-function: cubic-bezier(0.25, 0.85, 0.4, 1) width:auto; ;}
  7.  
  8. .letterone { animation-delay:0.1s; display:inline-block;}
  9. .lettertwo { animation-delay:0.2s; display:inline-block;}
  10. .letterthree { animation-delay:0.4s; display:inline-block; }
  11. .letterfour { animation-delay:0.6s; display:inline-block;}
  12.  
  13. @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>
  14.  
  15. <p class="bouncing letterone">t</p><p class="bouncing lettertwo">e</p><p class="bouncing letterthree">x</p><p class="bouncing letterfour">t</p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement