Created
September 12, 2014 21:26
-
-
Save olafdietsche/c64a99535de5b668b1ba to your computer and use it in GitHub Desktop.
CSS: rotate an image on hover
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:hover { | |
transform: rotateY(180deg); | |
transition: all 1s ease 0s; | |
} | |
img { | |
transition: all 1s ease 0s; | |
} |
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 src="http://lorempixel.com/200/200"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment