ruesha

hovering text

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