Skip to content

Instantly share code, notes, and snippets.

@olafdietsche
Created September 12, 2014 21:26
Show Gist options
  • Save olafdietsche/c64a99535de5b668b1ba to your computer and use it in GitHub Desktop.
Save olafdietsche/c64a99535de5b668b1ba to your computer and use it in GitHub Desktop.
CSS: rotate an image on hover
img:hover {
transform: rotateY(180deg);
transition: all 1s ease 0s;
}
img {
transition: all 1s ease 0s;
}
<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