Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created August 18, 2014 13:52
Show Gist options
  • Save LeaVerou/9f3d45df5a875902104f to your computer and use it in GitHub Desktop.
Save LeaVerou/9f3d45df5a875902104f to your computer and use it in GitHub Desktop.
Blinking animations
/**
* Blinking animations
*/
@keyframes blink-smooth { to { opacity: 0 } }
@keyframes blink { 50% { opacity: 0 } }
p {
animation: blink-smooth .3s 10 alternate;
background: yellow;
}
p + p {
animation: blink .5s 5 steps(1);
}
<p>Blinking smoothly
<p>Non-smooth blinking
// alert('Hello world!');
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment