我正在使用以下jquery脚本在我正在创建的网站上实现平滑滚动效果:
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top-140
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});
可以看出,由于我正在实现的粘性导航栏,我在偏移量(.offset()。top-140)上添加了一个填充。但是,在移动版本上,填充太多了。在移动版本方面,如何更改填充?谢谢!