Fade text when page scrolls

后端 未结 4 1272
Happy的楠姐
Happy的楠姐 2021-02-06 18:33

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

4条回答
  •  终归单人心
    2021-02-06 18:56

    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

提交回复
热议问题