Fade text when page scrolls

后端 未结 4 1269
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:54

    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
            }); 
        });
    });
    

提交回复
热议问题