Advertisement
loveberry

glowing text

May 20th, 2023 (edited)
231
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. .glow {
  3. -webkit-background-clip: text;
  4. -webkit-text-fill-color: transparent;
  5. -webkit-text-stroke-width: 1px;
  6. -webkit-text-stroke-color: #000;
  7. font-size:2em;
  8. -webkit-animation: glow 2.0s linear infinite;
  9. -moz-animation: glow 2.0s linear infinite;
  10. -ms-animation: glow 2.0s linear infinite;
  11. -o-animation: glow 2.0s linear infinite;
  12. animation: glow 2.0s linear infinite;
  13. }
  14.  
  15. @keyframes glow {
  16. 0% { text-shadow: 0 0 15px pink; }
  17. 50% { text-shadow: none; }
  18. 100% { text-shadow: 0 0 15px pink; }
  19. }
  20. @-webkit-keyframes glow {
  21. 0% { text-shadow: 0 0 15px pink; }
  22. 50% { text-shadow: 0 0 0; }
  23. 100% { text-shadow: 0 0 15px pink; }
  24. }
  25. </style>
  26.  
  27. <div class="glow"><strong>glowing</strong></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement