I want to gradually cycle through different background colors for a fixed div as you scroll down the page. I think I can do this using jQuery waypoints, but need a hand starting this as I have no idea where to start.
Website I'm working on is here: www.samskirrowdesign.com I want to change the color of the 3px high fixed div at the top of the page.
scroll– Jan Dvorak Nov 3 '12 at 20:21$('body, html').on('scroll', function() { if ($(this).scrollTop() > 100 ) $(this).css('background', 'red'); });– adeneo Nov 3 '12 at 20:24$('body, html').on('scroll', function() { if ($('body').scrollTop() > 100 ) $('.top').css('background-color', '#000'); });– Sam Skirrow Nov 3 '12 at 22:34