我有一个带有平滑滚动的粘性菜单栏,可以为锚点活动元素添加一个class =“active”。
这是我的js
$(document).ready(function () {
$(document).on("scroll", onScroll);
//smoothscroll
$('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);
if( window.innerWidth > 767 ){
$('html, body').stop().animate({
'scrollTop': $target.offset().top - 53}, 1000, 'swing', function () {
window.location.hash = target;
$(document).on("scroll", onScroll);
});
}else{
$('html, body').stop().animate({
'scrollTop': $target.offset().top + 1}, 1000, 'swing', function () {
window.location.hash = target;
$(document).on("scroll", onScroll);
});
}
});
});
function onScroll(event){
var scrollPos = $(document).scrollTop();
$('#menu-center a').each(function () {
var currLink = $(this);
var refElement = $(currLink.attr("href"));
if (refElement.position().top - 300 <= scrollPos && refElement.position().top + refElement.height() > scrollPos) {
$('#menu-center ul li a').removeClass("active");
currLink.addClass("active");
}
else{
currLink.removeClass("active");
}
});
}
偏移量在Chrome和Safari,移动设备和计算机上完美无效,但在Firefox和IE上无法使用。我一直在寻找几个小时的解决方案,但无法使其正常工作