Skip to content

Instantly share code, notes, and snippets.

@zincplusplus
Created June 13, 2012 13:38
Show Gist options
  • Save zincplusplus/2924109 to your computer and use it in GitHub Desktop.
Save zincplusplus/2924109 to your computer and use it in GitHub Desktop.
blink 182
/**
* blink 182
*/
@-webkit-keyframes blink { 0%, 49.99% { color:red } 50%, 100% { color: blue } }
@-moz-keyframes blink { 0%, 49.99% { color:red } 50%, 100% { color: blue } }
@keyframes blink { 0%, 49.99% { color:red } 50%, 100% { color: blue } }
div {
-webkit-animation:blink 2s/*this is the time*/ linear 0s infinite normal;
-moz-animation:blink 2s/*this is the time*/ linear 0s infinite normal;
animation:blink 2s/*this is the time*/ linear 0s infinite normal;
}
<div>Blink 182</div>
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment