Skip to content

Instantly share code, notes, and snippets.

@L1fescape
Created March 30, 2015 18:52
Show Gist options
  • Save L1fescape/fcf6b5b60b710362f34f to your computer and use it in GitHub Desktop.
Save L1fescape/fcf6b5b60b710362f34f to your computer and use it in GitHub Desktop.
setInterval(function(){
for (var i = 0, nodes = document.querySelectorAll('*'); i < nodes.length; i++) {
nodes[i].style.border = '10px solid #' + Math.floor(Math.random()*16777215).toString(16);
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment