向javascript添加偏移量

时间:2015-11-05 13:22:47

标签: javascript jquery html css

我的网站上的航点之间有一个小脚本:

$(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;
      }
    }
  });
});

现在我必须添加偏移量。如果用户点击<a href="#jumper">JUMP!</a>

javascript应滚动到<div id="#jumper"></div>,偏移量为500px。我没有弄清楚正确的代码部分。

1 个答案:

答案 0 :(得分:0)

      if (target.length) {
        $('html,body').animate({
          scrollTop: target.offset(+500).top
        }, 1000);
        return false;
      }

.offset(+500)&lt; - 500px