Jquery按设定值滚动到div以上

时间:2014-10-06 22:13:54

标签: jquery html

我在页面顶部有一个浮动导航栏,所以当我点击#ID链接时,它会隐藏我想要滚动到它后面的对象。

我正在使用jquery滚动此代码:

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

有没有办法可以滚动到比标签位置略低或高一个像素的位置?

Demo

注意:确保在chrome中允许“不安全的内容”,因为某些jquery不会工作。

2 个答案:

答案 0 :(得分:2)

你的意思是

scrollTop: target.offset().top - 50

答案 1 :(得分:1)

scrollTop: target.offset().top更改为scrollTop: target.offset().top + x,其中x是您要添加或减去的数字