Created
September 15, 2014 03:51
-
-
Save adriancbo/4c9f1b21ffc7bb2e43f6 to your computer and use it in GitHub Desktop.
Hardware Accelerate SCSS Mixin
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
@mixin hw-accelerate { | |
-webkit-transform: translate3d(0, 0, 0); | |
-webkit-backface-visibility: hidden; | |
-webkit-perspective: 1000; | |
transform: translate3d(0, 0, 0); | |
backface-visibility: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment