Advertisement
ukamori

pulsing text

Jul 13th, 2022
2,491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.37 KB | None | 0 0
  1. <style>
  2. #text01 {
  3. animation: rainbow 1s infinite;
  4. /*feel free to adjust ur css here*/
  5. font-size: 4em;
  6. font-weight: bold;
  7. -webkit-text-stroke: 1px #000;
  8. }
  9.  
  10. @keyframes rainbow {
  11. 0% {
  12. color: #736CED;
  13. }
  14. 25% {
  15. color: #9F9FED;
  16. }
  17. 50% {
  18. color: #D4C1EC;
  19. }
  20. 75% {
  21. color: #F2DFD7;
  22. }
  23. 100% {
  24. color: #FEF9FF;
  25. }
  26. }
  27. </style>
  28.  
  29. <div id="text01">
  30. pulsing text
  31. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement