Created
May 18, 2014 02:40
-
-
Save clone1018/2f81e46440ec616290c8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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