Skip to content

Instantly share code, notes, and snippets.

@tillberg
Created March 13, 2013 18:17
Show Gist options
  • Save tillberg/5154714 to your computer and use it in GitHub Desktop.
Save tillberg/5154714 to your computer and use it in GitHub Desktop.
<blink> shim for chrome
@-webkit-keyframes 'blink' {
0% { opacity: 1; }
50% { opacity: 0; }
}
blink {
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-name: blink;
-webkit-animation-timing-function: steps(1, end);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment