Last active
November 30, 2015 09:15
-
-
Save Calvetto/abedd1d0e0bd2d8741cb to your computer and use it in GitHub Desktop.
Perspectiva
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
| /* | |
| * Perspectiva | |
| */ | |
| .container { | |
| width: 200px; height: 200px; | |
| border: 1px solid #CCC; | |
| margin: 40px 50px; | |
| position: relative; | |
| perspective: 600px; | |
| } | |
| .box { | |
| width: 100%; height: 100%; | |
| display: block; | |
| position: absolute; | |
| } | |
| .box.red { | |
| transform: rotate( 45deg ); | |
| background-color: red; | |
| } | |
| .box.blue { | |
| transform: rotateY( -45deg ); | |
| background-color: blue; | |
| } |
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
| <section id="red" class="container"> | |
| <div class="box red"></div> | |
| </section> | |
| <section id="blue" class="container"> | |
| <div class="box blue"></div> | |
| </section> |
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
| // alert('Hello world!'); |
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
| {"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment