Skip to content

Instantly share code, notes, and snippets.

@megahbite
Created June 17, 2014 02:18
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 megahbite/2bc79c41975798489e7f to your computer and use it in GitHub Desktop.
Save megahbite/2bc79c41975798489e7f to your computer and use it in GitHub Desktop.
Blink with CSS3
.blink {
@include animation(blink 1.5s step-end infinite);
}
@include keyframes(blink) {
0% { visibility: visible; }
50% { visibility: hidden; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment