Created
December 16, 2011 15:27
-
-
Save desandro/1486456 to your computer and use it in GitHub Desktop.
3D perspective inheritance
This file contains hidden or 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
| /* 3D perspective inheritance */ | |
| #container { | |
| width: 320px; | |
| height: 50px; | |
| background: blue; | |
| margin-top: 100px; | |
| -webkit-perspective: 800; | |
| -webkit-perspective-origin: 160px 240px; | |
| } | |
| .box { | |
| width: 320px; | |
| height: 480px; | |
| background: red; | |
| -webkit-transform: rotateY(45deg); | |
| } | |
| .box:hover { | |
| } |
This file contains hidden or 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
| <div id="container"> | |
| <div class="box"></div> | |
| </div> |
This file contains hidden or 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
| {"page":"css","view":"split-vertical"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment