Skip to content

Instantly share code, notes, and snippets.

@mlpassos
Created July 14, 2014 00:27
Show Gist options
  • Save mlpassos/672a957f3db320dcc12e to your computer and use it in GitHub Desktop.
Save mlpassos/672a957f3db320dcc12e to your computer and use it in GitHub Desktop.
Untitled
body {
}
.container {
width:100px;
height:200px;
border:1px solid red;
margin:0 auto;
perspective:600px;
transform-style:preserve-3d;
}
.box {
float:left;
background-color:purple;
width:100%;
height:100%;
border:1px solid green;
margin:0 auto;
transform-origin:top left;
transition: all 1s ease-in-out;
}
.box:hover {
transform: rotateY(-89deg);
}
.hidden {
width:50%;
height:50%;
background-color:orange;
margin:auto auto;
}
<div class="container">
<div class="box"></div>
<div class="hidden"></div>
</div>
// alert('Hello world!');
{"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