Skip to content

Instantly share code, notes, and snippets.

@SeanJA
Created April 19, 2013 16:29
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 SeanJA/5421463 to your computer and use it in GitHub Desktop.
Save SeanJA/5421463 to your computer and use it in GitHub Desktop.
script {
display: block;
-webkit-animation-name: blink;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
-webkit-animation-duration: 1s;
animation-name: blink;
animation-iteration-count: infinite;
animation-timing-function: cubic-bezier(1.0,0,0,1.0);
animation-duration: 1s;
}
@-webkit-keyframes blink{
from{
opacity:1;
}
to{
opacity: 0;
}
}
@keyframes blink{
from{
opacity:1;
}
to{
opacity: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment