Skip to content

Instantly share code, notes, and snippets.

@bjartwolf
Last active December 15, 2015 17:59
Show Gist options
  • Save bjartwolf/5300049 to your computer and use it in GitHub Desktop.
Save bjartwolf/5300049 to your computer and use it in GitHub Desktop.
spin
var play = function(){
console.log('Velkommen til konsollet. Skriv play.spin() og se hva som skjer! Skriv play.help() for hjelp og play.about() for bakgrunnsinfo ');
};
play.spin = function () { $("body").css("-webkit-transform", "rotate3d(1,1,0,180deg)")}
play.help = function () { console.log("Skriv play.spin() og trykk enter")};
play.about = function () { console.log("Sjekk ut http://blog.bjartwolf.com/?p=552") };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment