在移动设备上禁用滚动偏移
Disable scroll offset on mobile devices
我有点 js 问题。这是我的代码
$(document).on("scroll", onScroll);
$('a[href^="#"]').on('click', function (e) {
e.preventDefault();
$(document).off("scroll");
$('a').each(function () {
$(this).removeClass('active');
})
$(this).addClass('active');
var target = this.hash,
menu = target;
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top - 53}, 1000, 'swing', function () {
window.location.hash = target;
$(document).on("scroll", onScroll);
});
});
如您所见,我在目标上方设置了 53 像素的偏移量。 53px 是我固定菜单栏的高度
我想在移动设备上将此偏移量设置为 0,因为菜单栏是隐藏的。
怎么做?
你可以在这上面使用window.innerWidth
。通常移动window不超过1024px。在我这样做的过程中,我将从 800px 开始。
示例:
if( window.innerWidth > 801 ){
// offset code to 53 on not mobile
}else{
// offset code to 0 on mobile
}
我有点 js 问题。这是我的代码
$(document).on("scroll", onScroll);
$('a[href^="#"]').on('click', function (e) {
e.preventDefault();
$(document).off("scroll");
$('a').each(function () {
$(this).removeClass('active');
})
$(this).addClass('active');
var target = this.hash,
menu = target;
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top - 53}, 1000, 'swing', function () {
window.location.hash = target;
$(document).on("scroll", onScroll);
});
});
如您所见,我在目标上方设置了 53 像素的偏移量。 53px 是我固定菜单栏的高度
我想在移动设备上将此偏移量设置为 0,因为菜单栏是隐藏的。
怎么做?
你可以在这上面使用window.innerWidth
。通常移动window不超过1024px。在我这样做的过程中,我将从 800px 开始。
示例:
if( window.innerWidth > 801 ){
// offset code to 53 on not mobile
}else{
// offset code to 0 on mobile
}