Created
June 13, 2012 13:38
-
-
Save zincplusplus/2924109 to your computer and use it in GitHub Desktop.
blink 182
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div>Blink 182</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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