当滚动条达到95%时,阻止继续滚动div

时间:2013-09-26 16:08:12

标签: javascript

当滚动条达到总滚动的95%时,如何防止继续滚动div?

1 个答案:

答案 0 :(得分:1)

由于您没有演示失败的示例,我可以为您提供95%已完成的解决方案。

(function (w, d) {
    w.scroll(function () {
        var scrollBottom = 95 * (w.scrollTop() + w.height()) / d.height();

        if (scrollBottom > 95) {
            w.scrollTop(  /* what you put here is my exercise for you */  )
        }
    });
}($(window), $(document));