Skip to content

Instantly share code, notes, and snippets.

@grant
Created May 4, 2014 03:04
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 grant/60544ed82443ff1e678b to your computer and use it in GitHub Desktop.
Save grant/60544ed82443ff1e678b to your computer and use it in GitHub Desktop.
Fun with javascript
setInterval(function () {
var color = 'rgb('+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+')';
console.log(color);
document.getElementsByTagName('header')[0].style['background-color'] = color;
}, 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment