Skip to content

Instantly share code, notes, and snippets.

@siygle
Created April 14, 2011 18:49
Show Gist options
  • Save siygle/920194 to your computer and use it in GitHub Desktop.
Save siygle/920194 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$(".click").toggle(function(){
$("#box").css("-webkit-transform","scale(2.1) rotate(-90deg)"); },
function () {
$("#box").css("-webkit-transform","scale(1) rotate(0)");
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment