Skip to content

Instantly share code, notes, and snippets.

@etjossem
Last active September 8, 2015 20:57
Show Gist options
  • Save etjossem/688e72d5f1727c88602e to your computer and use it in GitHub Desktop.
Save etjossem/688e72d5f1727c88602e to your computer and use it in GitHub Desktop.
You are a horrible person.
blink {
animation-duration: 1s;
animation-name: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 1;
}
51% {
opacity: 0;
}
100% {
opacity: 0;
}
}
<blink>You are awful.</blink>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment