Advertisement
naocrrds

blinking text

Dec 30th, 2024
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <style>
  2. p3 {
  3. color: #000000;
  4. animation: blinkingText 1.2s infinite;
  5. margin: auto;
  6. font-size: 2rem;
  7. font-family: sant joan;
  8. }
  9.  
  10. @keyframes blinkingText {
  11. 0% {
  12. color: #000000;
  13. }
  14.  
  15. 49% {
  16. color: #000000;
  17. }
  18.  
  19. 60% {
  20. color: white;
  21. }
  22.  
  23. 99% {
  24. color: white;
  25. }
  26.  
  27. 100% {
  28. color: #000000;
  29. }
  30. }
  31.  
  32. </style>
  33.  
  34. <p3>blinking text</p3>
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement