Skip to content

Instantly share code, notes, and snippets.

@skatenerd
Created April 7, 2015 04:16
Show Gist options
  • Save skatenerd/40db35d6ab9468012e7e to your computer and use it in GitHub Desktop.
Save skatenerd/40db35d6ab9468012e7e to your computer and use it in GitHub Desktop.
rave
var rave = setInterval(
function () {
index = Math.floor(Math.random() * 1000) % colors.length;
$(rave_selector).css('border-color', colors[index]);
$(rave_selector).css('background-color', colors[index]);
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment