Skip to content

Instantly share code, notes, and snippets.

@private-face
Created August 7, 2013 08:01
Show Gist options
  • Save private-face/6172131 to your computer and use it in GitHub Desktop.
Save private-face/6172131 to your computer and use it in GitHub Desktop.
blink
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