Advertisement
teenagegoths

blinky animation

Sep 12th, 2021
1,668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.14 KB | None | 0 0
  1. <style> .blinky{
  2. animation:blink 1s step-end infinite;
  3. display-block:inline;
  4. }
  5. @keyframes blink {
  6. 0% {opacity:1;}
  7. 50% {opacity:0;}
  8. } </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement