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
Just manipulate the margins of the text like you did the opacity.
Example:
jQuery(function($) { var divs = $('.fade'); $(window).on('scroll', function() { var st = $(this).scrollTop(); divs.css({ 'margin-top' : -(st/3)+"px", 'opacity' : 1 - st/35 }); }); });