6
我有一個UL導航,我這有平滑滾動jQuery的工作:平滑滾動以錨定偏移像素,除了一個特定的錨?
$(document).ready(function() {
$(document).on("scroll", onScroll);
//smoothscroll
$('a[href^="#"]').on('click', function (e) {
e.preventDefault();
$(document).off("scroll");
$('a').each(function() {
$('.nav').removeClass('active');
})
$('.nav').addClass('active');
var target = this.hash,
menu = target;
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top-59
}, 500, 'swing', function() {
window.location.hash = target;
$(document).on("scroll", onScroll);
});
});
});
它關係到-59像素,這正是我需要它爲所有,但一個錨定的事,有什麼辦法我可以添加一行代碼,說'除了X類'或什麼的? jQuery的新手在這裏;)
任何幫助將是偉大的,謝謝。
哇,多數民衆贊成真棒@andy非常感謝! –