Skip to content

Instantly share code, notes, and snippets.

@chrismytton
Created September 14, 2014 22:21
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 chrismytton/cea1a394e55466c3416e to your computer and use it in GitHub Desktop.
Save chrismytton/cea1a394e55466c3416e to your computer and use it in GitHub Desktop.
A Pen by Chris Mytton.
window.onload = function() {
setInterval(function() {
document.body.style.cssText = "background-color: rgb(" + [Math.floor(Math.random() * 255), Math.floor(Math.random() * 255), Math.floor(Math.random() * 255)].join(",") + ")";
}, 500);
};
body {
transition: background-color 500ms linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment