如何计算何时滚动接近底部



如何通过此函数计算滚动条接近底部的时间:

$(window).bind( "scroll", function(){ 
    console.log($(window).height());//window heigth
    console.log($(window).scrollTop()); //returns scroll position from top of 
});

我还需要什么吗?

这样的东西应该做,不是吗?

$(window).bind( "scroll", function(){ 
    var windowHt = $(window).height();
    var myPos = $(window).scrollTop();
    if (myPos > (windowHt - 100)) { // adjust offset to suit
        do stuff;
    }
});

这里你可以看到一个例子,当你到达底部…

$(window).scroll(function() {   
   if( ($(window).scrollTop() + $(window).height()) >= $(document).height()-200) {
       alert("bottom!");
   }
});
http://jsfiddle.net/gWD66/2631/

当你的底部有200px或更多的时候,这个会提醒你…

最新更新