Skip to content

Instantly share code, notes, and snippets.

@kalupa
Created December 30, 2012 01:22
Show Gist options
  • Save kalupa/4410383 to your computer and use it in GitHub Desktop.
Save kalupa/4410383 to your computer and use it in GitHub Desktop.
.blink {
-webkit-animation-duration: 1s;
-webkit-animation-name: blinky;
-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes blinky {
from {
opacity: 100%;
}
to {
opacity: 0%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment