Skip to content

Instantly share code, notes, and snippets.

@jamesona
Last active July 20, 2016 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesona/e5ca0722aee9d2c6f315a9ef7a5b9a33 to your computer and use it in GitHub Desktop.
Save jamesona/e5ca0722aee9d2c6f315a9ef7a5b9a33 to your computer and use it in GitHub Desktop.
var h = 0;setInterval(function(){document.querySelectorAll('.clearfix._nd_.direction_ltr.text_align_ltr .clearfix div').forEach(function(e,i,a){
e.style.backgroundColor = "hsl("+h+", 83%, 44%)"
})
if (h < 359)
h++
else
h = 0
}, 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment