A Pen by sean-roberts on CodePen.
Created
February 16, 2015 01:53
-
-
Save sean-roberts/3c752a4d8355051aaca8 to your computer and use it in GitHub Desktop.
PwQyzm
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="board"> </div> | |
<svg display="none;"> | |
<defs> | |
<clipPath id="skateboard"> | |
<polygon points="300 0, 300 300, 0 0" /> | |
</clipPath> | |
</defs> | |
</svg> |
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
.board{ | |
background: blue url("http://shop.ccs.com/media/catalog/product/cache/4/image/500x/17f82f742ffe127f42dca9de82fb58b1/w/e/welcome-jackalope-on-basilisk-skateboard-deck-black-8-8-top_1.jpg") center center no-repeat; | |
background-size: auto 200px; | |
width: 60px; | |
height: 200px; | |
transition: transform .3s; | |
transform-style: preserve-3d; | |
-webkit-clip-path: polygon(50% 0%, 75% 3%, 87% 10%, 88% 100%, 100% 100%, 0% 100%, 0% 0%); | |
background-visibility: none; | |
&:hover { | |
transform: rotateY(-20deg) rotateX(0deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment