Skip to content

Instantly share code, notes, and snippets.

@alexmwalker
Created February 21, 2012 00:47
Show Gist options
  • Save alexmwalker/1872608 to your computer and use it in GitHub Desktop.
Save alexmwalker/1872608 to your computer and use it in GitHub Desktop.
Dabblet: CSS3 animation basics
/**
* 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;
}
<!-- content to be placed inside <body>…</body> -->
<div id="example">
</div>
{"view":"split","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment