当navbar-fixed-top滚动时,Twitter-Bootstrap捕获

时间:2013-04-03 12:04:46

标签: javascript css twitter-bootstrap

当twitter-bootstrap navbar-fixed-top滚动时,有没有人知道是否可以通过css或js捕获?

我想我应该检查用户何时滚动页面,但如果可能的话我想更容易理解

1 个答案:

答案 0 :(得分:1)

$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() == $(document).height()) {
   alert("bottom!");
}
});

这实际上可以在这里找到:How do I use JQuery to detect if a user scrolls to the bottom of the page?

您可以更改检测到的位置,以便选择位置。