Created
February 7, 2014 12:31
-
-
Save andreloureiro/8861838 to your computer and use it in GitHub Desktop.
change_body_bg_color
This file contains 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
window.setInterval(function(){ | |
document.body.style.webkitTransition = '500ms all linear'; | |
document.body.style.backgroundColor = '#'+Math.round(Math.random() * (999999 - 100000) + 100000) | |
},500) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment