Skip to content

Instantly share code, notes, and snippets.

@erickreutz
Created January 24, 2013 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erickreutz/4628149 to your computer and use it in GitHub Desktop.
Save erickreutz/4628149 to your computer and use it in GitHub Desktop.
@keyframes animationName {
0% {
#someElement {
margin-left: 100px;
width: 300%;
}
.someOtherElement {
opacity: 0.0;
}
}
100% {
#someElement {
margin-left: 0px;
width: 100%;
}
.someOtherElement {
opacity: 1.0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment