Created
August 7, 2013 08:01
-
-
Save private-face/6172131 to your computer and use it in GitHub Desktop.
blink
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 { | |
visibility: visible; | |
opacity: 1; | |
-webkit-animation: blink 1s infinite step-start,step-stop; | |
-moz-animation: blink 1s infinite step-start,step-stop; | |
animation: blink 1s infinite step-start,step-stop; | |
} | |
@-webkit-keyframes blink { | |
0% { | |
opacity: 0; | |
} | |
50% { | |
opacity: 1; | |
} | |
100% { | |
opacity: 0; | |
} | |
} | |
@-moz-keyframes blink { | |
0% { | |
opacity: 0; | |
} | |
50% { | |
opacity: 1; | |
} | |
100% { | |
opacity: 0; | |
} | |
} | |
@keyframes blink { | |
0% { | |
opacity: 0; | |
} | |
50% { | |
opacity: 1; | |
} | |
100% { | |
opacity: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment