使用我的javascript代码,我可以滚动到div,但我需要javascript让我比该div高20个像素。我的代码就是这个
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
有人可以说10px
高于div
吗?非常感谢你
如果您想了解有关http://www.sventasticable.nl
更具体的问题,这是我的网页我的英语不是很好。
答案 0 :(得分:1)
从top
$('html,body').animate({
scrollTop: target.offset().top - 10
}, 1000);