Created
June 7, 2012 09:47
-
-
Save leuchtetgruen/2887915 to your computer and use it in GitHub Desktop.
Untitled
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
@keyframes rotate { | |
0% { transform: rotateY(0deg) } | |
100% { transform: rotateY(180deg) } | |
} | |
img { | |
border : 1px solid lightgray; | |
perspective: 1000; | |
-webkit-box-reflect:below 5px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.5, transparent), to(white)); | |
} | |
img.animating { | |
animation: rotate 2s infinite; | |
animation-direction: alternate; | |
} | |
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
<img id="3d" src="http://www.jd-promotion-shop.de/UserFiles/images/visitenkarte_premium.jpg" /> | |
<a href="#" | |
onclick="document.getElementById('3d').className='animating';">Rotate the card</a> | |
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
{"view":"separate","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