I have this basic example working:
http://www.mharrisweb.co.uk/tester.htm
Is there anyway I can get the fading text to scroll slightly, to create a more fluid tr
Here is something that combines a few of the ideas already discussed.
$(window).scroll(function(){ var top = ($(window).scrollTop() > 0) ? $(window).scrollTop() : 1; $('.fade').stop(true, true).fadeTo(0, 1 / top); $('.fade').css('top', top * 1.3); });
jsfiddle