Created
May 24, 2012 03:43
-
-
Save parrfolio/2779295 to your computer and use it in GitHub Desktop.
Optimize iOS Animations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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