Created
December 27, 2013 08:08
-
-
Save jondashkyle/8143987 to your computer and use it in GitHub Desktop.
Blink rehash #css
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
.element:hover { | |
-moz-animation: blink 150ms steps(1, end) infinite; | |
-webkit-animation: blink 150ms steps(1, end) infinite; | |
} | |
@-moz-keyframes blink { | |
0% { opacity: 0; } | |
50% { opacity: 1; } | |
} | |
@-webkit-keyframes blink { | |
0% { opacity: 0; } | |
50% { opacity: 1; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment