eurydice

pop text

Jul 30th, 2021 (edited)
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <style>
  2.  
  3. #pop {
  4. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  5.  font-style: italic;
  6.  font-size:2em;
  7.  font-weight:bold;
  8.  color: #fff;
  9.  -webkit-animation: pop 1s ease-in-out infinite alternate;
  10.  animation: pop 1s ease-in-out infinite alternate;
  11.  -moz-animation: pop 1s ease-in-out infinite alternate;
  12. }
  13.  
  14. @keyframes pop {
  15. from {
  16. transform:scale(0.95)
  17. }
  18.  
  19. 50% {
  20. transform:scale(1)
  21. }
  22.  
  23. to {
  24. transform:scale(0.95)
  25. }
  26. }
  27.  
  28. @-webkit-keyframes pop {
  29. from {
  30. -webkit-transform:scale(0.95)
  31. }
  32.  
  33. 50% {
  34. -webkit-transform:scale(1)
  35. }
  36.  
  37. to {
  38. -webkit-transform:scale(0.95)
  39. }
  40. }
  41.  
  42. </style>
  43. <div id="pop">Text!</div>
  44.  
  45.  
  46.  
Add Comment
Please, Sign In to add comment