Created
February 21, 2012 00:47
-
-
Save alexmwalker/1872608 to your computer and use it in GitHub Desktop.
Dabblet: CSS3 animation basics
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
/** | |
* Dabblet: CSS3 animation basics | |
*/ | |
@keyframes mysimpleanimation { /* flame pulses */ | |
0% {background-color:#f00;} | |
100% {background-color:#00f;} | |
} | |
#example { | |
margin:20px; | |
width:200px; | |
height:200px; | |
background-color:#f00; | |
animation: mysimpleanimation 4s infinite; | |
position:absolute; | |
} |
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> --> | |
<div id="example"> | |
</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":"split","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment