Skip to content

Instantly share code, notes, and snippets.

@KrofDrakula
Created July 2, 2010 09:16
Show Gist options
  • Save KrofDrakula/461134 to your computer and use it in GitHub Desktop.
Save KrofDrakula/461134 to your computer and use it in GitHub Desktop.
/* Requires jQuery */
var p = $("*");
setInterval(
function(){
var c = function() { return Math.floor(Math.random()*256); };
p.each(function(){
$(this).css("background","rgb(" + c() + "," + c() + "," + c() + ")");
});
}, 5
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment