Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created July 20, 2015 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/6767a968226d354aac4c to your computer and use it in GitHub Desktop.
Save chuck0523/6767a968226d354aac4c to your computer and use it in GitHub Desktop.
$(document).ready(function(){
//var log = function(x){console.log(x);}
var deg = 0;
$('#rotateButton').click(function(){
deg += 90;
$('.cube').css({
'-webkit-transform' : 'translateZ(-150px) rotateX('+ deg +'deg)',
'transform' : 'translateZ(-150px) rotateX('+ deg +'deg)'
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment