Created
June 9, 2016 10:09
-
-
Save alexvas123/3fca3fef2e03139c4b6c6c1ee117276e to your computer and use it in GitHub Desktop.
Double-sided image
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
// HTML | |
<div class="actors"> | |
<div class="face"> | |
<img src="img/abfab_lumley300.jpg" alt="Joanna Lumley"> | |
</div> | |
<div class="flag"> | |
<h6>Джоанна<br>Ламли</h6> | |
<img src="img/ukflaground.svg" alt="British flag"> | |
</div> | |
</div> | |
// CSS | |
// In parent element - +perspective(700) | |
.actors | |
cursor: pointer | |
margin-bottom: 10em | |
position: relative | |
+transition-duration(.7s) | |
+transition-property(transform) | |
+transform-style(preserve-3d) | |
+transition-timing-function($base-timing) | |
width: 80% | |
&:hover | |
+transform(rotateY(180deg)) | |
.face, .flag | |
+backface-visibility(hidden) | |
left: 0 | |
position: absolute | |
+size(100%) | |
top: 0 | |
.flag | |
+transform(rotateY(180deg)) | |
h6 | |
font-family: Roboto, sans-serif | |
font-size: $base-font-size*.8 | |
@include absolute-center | |
margin-top: 48% | |
z-index: 2 | |
img | |
position: absolute | |
z-index: 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment