Skip to content

Instantly share code, notes, and snippets.

@clone1018
Created May 18, 2014 02:40
Show Gist options
  • Save clone1018/2f81e46440ec616290c8 to your computer and use it in GitHub Desktop.
Save clone1018/2f81e46440ec616290c8 to your computer and use it in GitHub Desktop.
for(col=0x0;col<=0xFFF;col++) {
setColor(col);
setTimeout(function(){}, 1000);
}
function setColor(color) {
var xmlhttp = XMLHttpRequest();
xmlhttp.open('GET', 'http://colors.9k1.us/set?bg=' + color, true);
xmlhttp.send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment