Created
June 11, 2012 23:30
-
-
Save scottcorgan/2913411 to your computer and use it in GitHub Desktop.
CSS Perspective
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
@cubic-ease: cubic-bezier(.26,.67,.27,1); | |
-webkit-transition:all 200ms @cubic-ease; | |
-webkit-transform: perspective( 600px ) rotateY( -70deg ) scale(0.75); | |
-moz-transition:all 200ms @cubic-ease; | |
-moz-transform: perspective( 600px ) rotateY( -70deg ) scale(0.75); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment