Created
August 7, 2013 14:45
-
-
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/
This file contains hidden or 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
<blinky>Look, it blinks!</blinky> |
This file contains hidden or 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
@-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