Advertisement
izuemis

blinking text

Oct 5th, 2022
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #text01 {
  2. animation:blinkingText 1.2s infinite;
  3. }
  4.  
  5. @keyframes blinkingText{
  6. 0%{ color: #d896b2; }
  7. 49%{ color: #d896b2; }
  8. 60%{ color: #8d5071; }
  9. 99%{ color:#8d5071; }
  10. 100%{ color: #d896b2; }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement