Created
September 23, 2013 10:19
-
-
Save grifdail/6668690 to your computer and use it in GitHub Desktop.
Blink is dead, long live the blink tag !
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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