Advertisement
miitopias

neon pulsating text

Nov 11th, 2021
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. .neonpulse { animation: pulsate 0.8s infinite alternate;
  2. }
  3.  
  4. @keyframes pulsate {
  5.  
  6. 100% {
  7.  
  8. text-shadow:
  9. 0 0 4px #fff,
  10. 0 0 11px #fff,
  11. 0 0 19px #fff,
  12. 0 0 40px #F5624D,
  13. 0 0 80px #F5624D,
  14. 0 0 90px #F5624D,
  15. 0 0 100px #F5624D,
  16. 0 0 150px #F5624D;
  17.  
  18. }
  19.  
  20. 0% {
  21.  
  22. text-shadow:
  23. 0 0 2px #fff,
  24. 0 0 4px #fff,
  25. 0 0 6px #fff,
  26. 0 0 10px #F5624D,
  27. 0 0 45px #F5624D,
  28. 0 0 55px #F5624D,
  29. 0 0 70px #F5624D,
  30. 0 0 80px #F5624D;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement