Created
April 7, 2015 04:16
-
-
Save skatenerd/40db35d6ab9468012e7e to your computer and use it in GitHub Desktop.
rave
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
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