Advertisement
izuemis

pop animation

Oct 18th, 2022
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. -- POP TEXT ANIMATION --
  2.  
  3. elementid {
  4. -webkit-animation: pop 1s ease-in-out infinite alternate;
  5. animation: pop 1s ease-in-out infinite alternate;
  6. -moz-animation: pop 1s ease-in-out infinite alternate;
  7. }
  8.  
  9. @keyframes pop {
  10. from {
  11. transform:scale(0.95)
  12. }
  13.  
  14. 50% {
  15. transform:scale(1)
  16. }
  17.  
  18. to {
  19. transform:scale(0.95)
  20. }
  21. }
  22.  
  23. @-webkit-keyframes pop {
  24. from {
  25. -webkit-transform:scale(0.95)
  26.  
  27. }
  28.  
  29. 50% {
  30. -webkit-transform:scale(1)
  31.  
  32. }
  33.  
  34. to {
  35. -webkit-transform:scale(0.95)
  36.  
  37. }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement