Advertisement
GIFCITY

glowing text

Nov 16th, 2021 (edited)
448
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <style>
  2. @keyframes glow {
  3. 0% {
  4. text-shadow: 0 0 15px #737373;
  5. }
  6.  
  7. 50% {
  8. text-shadow: none;
  9. }
  10.  
  11. 100% {
  12. text-shadow: 0 0 15px #737373;
  13. }
  14. }
  15.  
  16. @-webkit-keyframes glow {
  17. 0% {
  18. text-shadow: 0 0 15px #737373;
  19. }
  20.  
  21. 50% {
  22. text-shadow: 0 0 0;
  23. }
  24.  
  25. 100% {
  26. text-shadow: 0 0 15px #737373;
  27. }
  28. }
  29.  
  30. #glowing {
  31. -webkit-background-clip: text;
  32. -webkit-text-fill-color: transparent;
  33. -webkit-text-stroke-width: 1px;
  34. -webkit-text-stroke-color: #000;
  35. -webkit-animation: glow 2.0s linear infinite;
  36. -moz-animation: glow 2.0s linear infinite;
  37. -ms-animation: glow 2.0s linear infinite;
  38. -o-animation: glow 2.0s linear infinite;
  39. animation: glow 2.0s linear infinite;
  40. }
  41.  
  42. </style>
  43. <div id="glowing">text</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement