Skip to content

Instantly share code, notes, and snippets.

@ariya
Created September 25, 2011 17:38
Show Gist options
  • Save ariya/1240878 to your computer and use it in GitHub Desktop.
Save ariya/1240878 to your computer and use it in GitHub Desktop.
/* raw and ugly */
@-webkit-keyframes anim {
0% { -webkit-transform: translate3d(0px, 0px, 0px); }
100% { -webkit-transform: translate3d(150px, 0px, 0px) } }
/* formatted using http://senchalabs.github.com/cssbeautify */
@-webkit-keyframes anim {
0% {
-webkit-transform: translate3d(0px, 0px, 0px);
}
100% {
-webkit-transform: translate3d(150px, 0px, 0px)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment