Skip to content

Instantly share code, notes, and snippets.

@netsi1964
Created July 10, 2012 22:18
Show Gist options
  • Save netsi1964/3086572 to your computer and use it in GitHub Desktop.
Save netsi1964/3086572 to your computer and use it in GitHub Desktop.
play with rotate3d
jQuery('*').css('-webkit-transition','2s all')
jQuery('img').hover(function() {
$(this).css('-webkit-transform', 'rotate3d(107, 117, 71, 397deg)')
},
function() {
$(this).css('-webkit-transform', 'rotate3d(107, 117, 71, 0deg)')
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment