基本上,我正在检查滚动位置是否位于页面底部,并根据该位置添加和删除类。但是,当删除固定类时,我无法滚动到页面底部。浏览器已经假设我在底部。我怎么能纠正这个?如果这没有意义,请告诉我。以下是我的代码:
JavaScript:
function fixedToRelative(){
var scrollPos = $(window).scrollTop() + $(window).height();
if(scrollPos == $(document).height()) {
$('.mobile.full').removeClass('fixed');
} else {
$('.mobile.full').addClass('fixed');
}
}
Css:
.mobile { position:relative; }
.mobile.fixed { position:fixed; bottom:0; left:0; right:0; }
答案 0 :(得分:1)
当您滚动到页面底部时,我认为您正在尝试添加.fixed
类。如果是这样,您可以执行以下操作:
$(window).on('scroll', function(){
var scrollPos = $(this).scrollTop() + $(this).height(); // Current Scroll position plus height of window
var atBottom = (scrollPos == $(document).height()); // Returns true/false based on if at bottom
$('.mobile').toggleClass('fixed', atBottom); // If at bottom of page, fixed class is appended
});