滚动到页面上的ID无法正确计算偏移量

时间:2016-01-25 03:49:19

标签: javascript

$('.home-slide-button').on('click', function (e) {
var matches = window.location.hash.match(/^#([0-9]+)$/);
if (matches) {
    var number = matches[1];
    $('html, body').animate({
        scrollTop: $('#' + number).offset().top -150
    }, 1500);
}
});

单击“主页”页面(http://buchbinderei.it/)中的产品链接时,它应重定向到“产品”页面(http://buchbinderei.it/produkte/),并顺畅向下滚动到所单击的产品。一些如何不计算顶部-150偏移...任何建议?

实际错误的偏移位置:https://www.dropbox.com/s/m3cbinuyl4d3pgv/Screenshot%202016-01-24%2022.47.55.png?dl=0

所需的抵消位置: https://www.dropbox.com/s/y0lhldjvult9kdg/Screenshot%202016-01-24%2022.48.49.png?dl=0

1 个答案:

答案 0 :(得分:0)

这解决了我的问题:

local-name()