Created
December 18, 2012 20:42
-
-
Save UltCombo/4331775 to your computer and use it in GitHub Desktop.
teste transform 3d
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
/** | |
* teste transform 3d | |
*/ | |
#container{ | |
position:relative; | |
margin:100px auto; | |
width:200px; | |
height:200px; | |
transform:perspective(500); | |
transition:all 500ms linear; | |
transform-style: preserve-3d; | |
transform-origin:0 50%; | |
} | |
img{ | |
width:200px; | |
height:200px; | |
} | |
figure{ | |
background:#155CA3; | |
position:absolute; | |
margin:0; | |
display:block; | |
width:100%; | |
height:100%; | |
/*backface-visibility:hidden;*/ | |
opacity:0.7; | |
} | |
.front{ | |
transform:rotateY(0) translateZ(100px); | |
} | |
.back{ | |
transform:rotateY(180deg) translateZ(100px); | |
} | |
.left{ | |
transform:rotateY(-90deg) translateZ(100px); | |
} | |
.right{ | |
transform:rotateY(90deg) translateZ(100px); | |
} | |
.top{ | |
transform:rotateX(90deg) translateZ(100px); | |
} | |
.bottom{ | |
transform:rotateX(-90deg) translateZ(100px); | |
} | |
#container:active{ | |
transform:rotateY(180deg); | |
} | |
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
<div id="container"> | |
<figure class="front"><img src="http://blog.webexpedition18.netdna-cdn.com/wp-content/uploads/2011/07/css3.jpg"></figure> | |
<figure class="back"><img src="http://www.phprime.com.br/wp-content/themes/envision/images/cursos/css3.png"></figure> | |
<figure class="left"><img src="http://media02.hongkiat.com/css3-code-slim/css3-markup.jpg"></figure> | |
<figure class="right"><img src="http://dapazze.com/wp-content/uploads/6079852166_e1f2c9c8f2.jpg"></figure> | |
<figure class="top"><img src="http://www.agni.art.br/wp-content/uploads/2012/11/html5-and-css3.jpg"></figure> | |
<figure class="bottom"><img src="http://files.myopera.com/mimetist/albums/12192732/HTML5%2BCSS3.png"></figure> | |
</div> | |
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
// alert('Hello world!'); |
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
{"view":"split-vertical","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