Advertisement
GIFCITY

blinking text

Dec 8th, 2022 (edited)
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <style>
  2. #blinking {
  3. animation:blinkingText 1.2s infinite;
  4. line-spacing: 150%;
  5. margin: auto;
  6. }
  7.  
  8. @keyframes blinkingText{
  9. 0%{ color: #000000; }
  10. 49%{ color: #000000; }
  11. 60%{ color: #00000000; }
  12. 99%{ color:#00000000; }
  13. 100%{ color: #000000; }
  14. }
  15. </style>
  16.  
  17. <div id="blinking">text</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement