Fade text when page scrolls

后端 未结 4 1339
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:55

    use this

    var divs = $('.social, .title');
    $(window).scroll(function(){
       if($(window).scrollTop()<10){
             divs.stop(true,true).fadeIn("fast");
       } else {
             divs.stop(true,true).fadeOut("fast");
       }
    });
    

提交回复
热议问题