Advertisement
miitopias

bouncy text cr cyberpinked

Nov 11th, 2021
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. .lebounce mark { font-size:4em; z-index: 99; animation: bounce 2s infinite; animation-timing-function: cubic-bezier(0.25, 0.85, 0.4, 1) width:auto; background: none;}
  2.  
  3. .lebounce mark:nth-child(1) { animation-delay:0s; display:inline-block;}
  4. .lebounce mark:nth-child(2) { animation-delay:0.2s; display:inline-block;}
  5. .lebounce mark:nth-child(3) { animation-delay:0.4s; display:inline-block; }
  6. .lebounce mark:nth-child(4) { animation-delay:0.6s; display:inline-block;}
  7. .lebounce mark:nth-child(5) { animation-delay:0.8s; display:inline-block;}
  8. .lebounce mark:nth-child(6) { animation-delay:1s; display:inline-block;}
  9. .lebounce mark:nth-child(7) { animation-delay:1.2s; display:inline-block;}
  10. .lebounce mark:nth-child(8) { animation-delay:1.4s; display:inline-block;}
  11. .lebounce mark:nth-child(9) { animation-delay:1.6s; display:inline-block;}
  12. .lebounce mark:nth-child(10) { animation-delay:1.8s; display:inline-block;}
  13.  
  14. @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); } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement