如何从顶部向此函数添加50px的偏移量?
$('a[href^="#"]').on('click', function(event) {
var target = $(this.getAttribute('href'));
if( target.length ) {
event.preventDefault();
$('html, body').stop().animate({
scrollTop: target.offset().top
}, 1000);
}
});
答案 0 :(得分:1)
你可以简单地添加50px,如: -
$('html, body').stop().animate({
scrollTop: target.offset().top + 50
}, 1000);