Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- #blinking {
- animation:blinkingText 1.2s infinite;
- line-spacing: 150%;
- margin: auto;
- }
- @keyframes blinkingText{
- 0%{ color: #000000; }
- 49%{ color: #000000; }
- 60%{ color: #00000000; }
- 99%{ color:#00000000; }
- 100%{ color: #000000; }
- }
- </style>
- <div id="blinking">text</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement