Created
February 14, 2013 15:51
-
-
Save pavelbier/4953684 to your computer and use it in GitHub Desktop.
Simple CSS3 flip card
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 class="flipper"> | |
<div class="front">Front</div> | |
<div class="back">Back</div> | |
</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
.flipper { | |
position: relative; | |
/* styling */ | |
width: 250px; | |
height: 250px; | |
.back, .front { | |
position: absolute; | |
top: 0;left:0; right:0; bottom:0; | |
/* styling */ | |
text-align: center; | |
color:#fff; | |
line-height:250px; | |
} | |
.front { | |
z-index: 2; | |
-webkit-transform: rotateX(0deg) rotateY(0deg); | |
-webkit-transform-style: preserve-3d; | |
-webkit-backface-visibility: hidden; | |
-moz-transform: rotateX(0deg) rotateY(0deg); | |
-moz-transform-style: preserve-3d; | |
-moz-backface-visibility: hidden; | |
-ms-transition: all .55s ease-in-out; | |
-moz-transition: all .55s ease-in-out; | |
-webkit-transition: all .55s ease-in-out; | |
transition: all .55s ease-in-out; | |
/* styling */ | |
background:blue; | |
} | |
.back { | |
z-index: 1; | |
-webkit-transform: rotateY(-180deg); | |
-webkit-transform-style: preserve-3d; | |
-webkit-backface-visibility: hidden; | |
-moz-transform: rotateY(-180deg); | |
-moz-transform-style: preserve-3d; | |
-moz-backface-visibility: hidden; | |
-o-transition: all .55s ease-in-out; | |
-ms-transition: all .55s ease-in-out; | |
-moz-transition: all .55s ease-in-out; | |
-webkit-transition: all .55s ease-in-out; | |
transition: all .55s ease-in-out; | |
/* styling */ | |
background:red; | |
} | |
&:hover { | |
.front { | |
-webkit-transform: rotateY(180deg); | |
-moz-transform: rotateY(180deg); | |
} | |
.back { | |
z-index: 3; | |
-webkit-transform: rotateX(0deg) rotateY(0deg); | |
-moz-transform: rotateX(0deg) rotateY(0deg); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment