Skip to content

Instantly share code, notes, and snippets.

@jondashkyle
Created December 27, 2013 08:08
Show Gist options
  • Save jondashkyle/8143987 to your computer and use it in GitHub Desktop.
Save jondashkyle/8143987 to your computer and use it in GitHub Desktop.
Blink rehash #css
.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