Skip to content

Instantly share code, notes, and snippets.

@LogicShop
Created May 31, 2012 18:21
Show Gist options
  • Save LogicShop/2845223 to your computer and use it in GitHub Desktop.
Save LogicShop/2845223 to your computer and use it in GitHub Desktop.
Spin and Fade with CSS Transform and Transition
img {
position: relative;
-webkit-transition: opacity, -webkit-transform, 1s;
}
img:hover {
opacity: 0;
-webkit-transition: opacity, -webkit-transform, 2s;
-webkit-transform: rotate(900deg) scale(0.05);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment