Last active
December 15, 2015 17:59
-
-
Save bjartwolf/5300049 to your computer and use it in GitHub Desktop.
spin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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