Advertisement
powylv

glowing text

Oct 21st, 2022 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <style>
  2. div {
  3. color: white;
  4. animation: glow 1.25s infinite;
  5. }
  6.  
  7. @keyframes glow {
  8. 0% {
  9. filter: drop-shadow(0px 0px 5px #F2F4E2);
  10. }
  11. 50% {
  12. filter: drop-shadow(0px 0px 5px #e0afb6);
  13. }
  14. 100% {
  15. filter: drop-shadow(0px 0px 5px #a3a8bb);
  16. }
  17. }
  18. </style>
  19.  
  20. <div>glow</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement