Created
September 13, 2012 12:17
-
-
Save anonymous/3713956 to your computer and use it in GitHub Desktop.
Untitled
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
#cover, #backcover | |
{ | |
position:absolute; | |
height: 300px; | |
width: 240px; | |
margin-left: 200px; | |
background-color: blue; | |
} | |
#backcover | |
{ | |
background-color: red; | |
top: 8px; | |
border-left: solid 3px black; | |
margin-left: 210px; | |
transition: transform 2s; | |
-webkit-transform: translateX(40%); | |
z-index: -100; | |
} | |
#cover.flipped { | |
transform-origin: right left; | |
transform-style: preserve-3d; | |
transform-style: flat; | |
transition: transform 2s; | |
-webkit-transform: translateX(-55%) rotateY(-180deg); | |
} | |
#cover .title | |
{ | |
color: white; | |
position: abolute; | |
margin: 0px auto; | |
font-size: 30px; | |
text-align: center; | |
margin-top:50px; | |
} | |
|
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="cover" class="flipped"> | |
<p class="title">Title</p> | |
</div> | |
<div id="backcover"></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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment