最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Do something 100px before the scrollbar reaches bottom - Stack Overflow

programmeradmin0浏览0评论

I have the below Javascript, and the alert shows up as it is supposed to when the scrollbar hits the bottom of the page.

However, I would like this to happen 100 pixels before it reaches the bottom. How would I do that?

$(window).scroll(function(){
  if($(window).scrollTop() == $(document).height() - $(window).height() ){

    alert("at bottom");

  }
}

I have the below Javascript, and the alert shows up as it is supposed to when the scrollbar hits the bottom of the page.

However, I would like this to happen 100 pixels before it reaches the bottom. How would I do that?

$(window).scroll(function(){
  if($(window).scrollTop() == $(document).height() - $(window).height() ){

    alert("at bottom");

  }
}
Share Improve this question asked Jun 2, 2011 at 19:46 fbhfbh 1882 silver badges9 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11
$(window).scroll(function(){
  if($(window).scrollTop() + 100 > $(document).height() - $(window).height() ){

    alert("at bottom");

  }
});

Using > instead of == because the scroll event fires sporadically, so you may scroll past that value a bunch of times without the event ever firing when there's a precise match.

发布评论

评论列表(0)

  1. 暂无评论