Created
May 2, 2013 12:40
-
-
Save anthonyringoet/5501930 to your computer and use it in GitHub Desktop.
animation one frame
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
/** | |
* animation one frame | |
* from http://lea.verou.me/2012/12/animations-with-one-keyframe/ | |
*/ | |
body{ | |
background: #f06; | |
text-align:center; | |
} | |
@keyframes dang{ | |
50%{ font-size:9em; } | |
} | |
.unicode{ | |
font-size:7em; | |
color:#fff; | |
animation: dang 0.5s infinite; | |
} |
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
<!-- content to be placed inside <body>…</body> --> | |
<span class="unicode">☂</span> |
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
// alert('Hello world!'); |
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":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment