我的主页滑块下有一个导航栏。 我希望当滚动到这一点时,导航栏会粘在页面顶部。
我的jQuery如下:
$(window).on('scroll load', function() {
$('.navbar').toggleClass('navbar-fixed-top', $(this).scrollTop() > $(window).height());
});
代码将类.navbar-fixed-top添加到导航中。 上面的代码完全正常,直到我设置html,body到height:100%。 当我这样做时,脚本无法检测导航何时到达视口顶部。 我需要在网站的另一部分执行此操作,我想要一整页bg。
为什么html,body设置为100%会影响我的jQuery代码?
由于