Skip to content

Instantly share code, notes, and snippets.

@jelmerdemaat
Created October 6, 2012 20:30
Show Gist options
  • Save jelmerdemaat/3846023 to your computer and use it in GitHub Desktop.
Save jelmerdemaat/3846023 to your computer and use it in GitHub Desktop.
How to do a continuous animation
/**
* How to do a continuous animation
*/
div{
width: 300px;
height: 300px;
background: yellow;
animation-duration: 4s;
animation-name: slide;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes "slide" {
0% {
background-color: red;
}
100% {
background-color: blue;
}
}
{"view":"split","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