Skip to content

Instantly share code, notes, and snippets.

@grifdail
Created September 23, 2013 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grifdail/6668690 to your computer and use it in GitHub Desktop.
Save grifdail/6668690 to your computer and use it in GitHub Desktop.
Blink is dead, long live the blink tag !
blink {
@-webkit-animation: blink 2s infinite;
-o-animation: blink 2s infinite;
animation: blink 2s infinite;
}
@keyframes blink{
0% {opacity: 0;}
49% {opacity: 0;}
50%{opacity: 1;}
100% {opacity: 1;}
}
@-webkit-keyframes blink{
0% {opacity: 0;}
49% {opacity: 0;}
50%{opacity: 1;}
100% {opacity: 1;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment