Skip to content

Instantly share code, notes, and snippets.

@parrfolio
Created May 24, 2012 03:43
Show Gist options
  • Save parrfolio/2779295 to your computer and use it in GitHub Desktop.
Save parrfolio/2779295 to your computer and use it in GitHub Desktop.
Optimize iOS Animations
/*Set these on animated elements for iPad and iPhone to possibly optimize*/
#foo {
-webkit-transform: translate3d(x,y,z); /* hardware acceleration */
-webkit-perspective: 0; /*prevent flickering */
-webkit-backface-visibility: hidden; /*prevent backgrounds showing through */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment