kylertism

popping images / text

Aug 24th, 2025
4
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <style>
  2. #pop {
  3. -webkit-animation: pop 2s ease-in-out infinite alternate;
  4. animation: pop 2s ease-in-out infinite alternate;
  5. -moz-animation: pop 2s ease-in-out infinite alternate;
  6. display: flex;
  7. justify-content: center;
  8. }
  9.  
  10. @keyframes pop {
  11. from {
  12. transform:scale(0.95)
  13. }
  14.  
  15. 50% {
  16. transform:scale(1)
  17. }
  18.  
  19. to {
  20. transform:scale(0.95)
  21. }
  22. }
  23.  
  24. @-webkit-keyframes pop {
  25. from {
  26. -webkit-transform:scale(0.95)
  27.  
  28. }
  29.  
  30. 50% {
  31. -webkit-transform:scale(1)
  32.  
  33. }
  34.  
  35. to {
  36. -webkit-transform:scale(0.95)
  37.  
  38. }
  39. }
  40.  
  41. </style>
  42.  
  43. <div id="pop"> yeah hi </div>
Advertisement
Add Comment
Please, Sign In to add comment