Skip to content

Instantly share code, notes, and snippets.

@Sitebase
Created August 7, 2013 14:45
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 Sitebase/6174688 to your computer and use it in GitHub Desktop.
Save Sitebase/6174688 to your computer and use it in GitHub Desktop.
For the people that will miss the blink element in the new FireFox. https://www.mozilla.org/en-US/firefox/23.0/releasenotes/
<blinky>Look, it blinks!</blinky>
@-moz-keyframes blink {
0% { opacity: 0; }
19% { opacity: 0; }
20% { opacity: 1; }
100% { opacity: 1; }
}
blinky {
-moz-animation: blink 1s infinite;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment