Skip to content

Instantly share code, notes, and snippets.

@padolsey
Created March 19, 2013 08:47
Show Gist options
  • Select an option

  • Save padolsey/5194583 to your computer and use it in GitHub Desktop.

Select an option

Save padolsey/5194583 to your computer and use it in GitHub Desktop.
$(window).load(function() {
var h = $('#header');
setInterval(function() {
var d = new Date;
h.css('backgroundColor', 'hsl('+(0| (d.getSeconds()*1000 + d.getMilliseconds()) / 60000 * 360)+',100%,50%)');
}, 100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment