Created
January 24, 2013 01:51
-
-
Save blakeeb/4616949 to your computer and use it in GitHub Desktop.
bringin' back the beloved HTML blink tag
This file contains 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 { | |
-webkit-animation-name: bring_back_the_blink; | |
-webkit-animation-duration: 0.3s; | |
-webkit-animation-iteration-count: infinite; | |
-webkit-animation-direction: alternate; | |
} | |
/* Not sure how to prevent smooth keyframe transitions, anyone have input? */ | |
@-webkit-keyframes bring_back_the_blink { | |
0%, 49.9% { opacity: 0; } | |
50.1%, 100% { opacity: 1; } | |
} | |
body { | |
font-family: 'Comic Sans MS'; | |
font-weight: bold; | |
font-size: 3em; | |
margin: 100px; | |
color: pink; | |
} |
This file contains 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>OH YEAH!!!</blink> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Rendered: http://jsfiddle.net/blakeeb/T28NS/3/