Skip to content

Instantly share code, notes, and snippets.

@panchr
Last active August 29, 2015 14:07
Show Gist options
  • Save panchr/942efb61b8edab7fba00 to your computer and use it in GitHub Desktop.
Save panchr/942efb61b8edab7fba00 to your computer and use it in GitHub Desktop.
Alternates through web page colors every 100ms
function colorSpam () {
var colors = ["red", "blue", "green", "orange", "purple", "yellow"];
function changeColor(i) {
i = i < colors.length ? i: 0;
document.body.style.backgroundColor = colors[i];
setInterval(function () {changeColor(i + 1)}, 100);
}
changeColor(1);
};
colorSpam();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment