jQuery滚动到锚点(减去设定的像素数量)

时间:2012-07-06 15:21:46

标签: jquery scroll anchor

我使用以下代码使用jQuery滚动到锚点:

$(document).ready(function() {
  function filterPath(string) {
  return string
    .replace(/^\//,'')
    .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
    .replace(/\/$/,'');
  }
  var locationPath = filterPath(location.pathname);
  var scrollElem = scrollableElement('html', 'body');

  $('a[href*=#]').each(function() {
    var thisPath = filterPath(this.pathname) || locationPath;
    if (  locationPath == thisPath
    && (location.hostname == this.hostname || !this.hostname)
    && this.hash.replace(/#/,'') ) {
      var $target = $(this.hash), target = this.hash;
      if (target) {
        var targetOffset = $target.offset().top;
        $(this).click(function(event) {
          event.preventDefault();
          $(scrollElem).animate({scrollTop: targetOffset}, 400, function() {
            location.hash = target;
          });
        });
      }
    }
  });

  // use the first element that is "scrollable"
  function scrollableElement(els) {
    for (var i = 0, argLength = arguments.length; i <argLength; i++) {
      var el = arguments[i],
          $scrollElement = $(el);
      if ($scrollElement.scrollTop()> 0) {
        return el;
      } else {
        $scrollElement.scrollTop(1);
        var isScrollable = $scrollElement.scrollTop()> 0;
        $scrollElement.scrollTop(0);
        if (isScrollable) {
          return el;
        }
      }
    }
    return [];
  }

});

无论如何都要让它滚动到那个锚点但减去一定数量的像素? (在我的情况下,我希望它去-92px)

感谢您的帮助。

9 个答案:

答案 0 :(得分:30)

我必须自己解决这个问题。您需要根据要滚动的像素数量来调整偏移量。就我而言,我需要它在页面上高出50个像素。所以,我从targetOffset中减去了50。

现在,为你摇摆不定的代码部分是location.hash - 这告诉浏览器将其位置设置为特定点。在所有情况下,这是一个包含您刚刚滚动到的ID的字符串。所以,它就像'#foo'。你需要保持这个,所以我们将保留它。

但是,为了防止浏览器在设置location.hash(默认浏览器操作)时“跳转”,您只需要阻止默认操作。因此,通过animate函数中的完成函数传递事件'e'。然后只需调用e.preventDefault()。您必须确保浏览器实际上正在调用一个事件,否则它将会出错。因此,if-test修复了这个问题。

完成。这是修改后的代码块:

if (target) {
    var targetOffset = $target.offset().top - 50;
    $(this).click(function(event) {
      if(event != 'undefined') {
          event.preventDefault();}
      $(scrollElem).animate({scrollTop: targetOffset}, 400, function(e) {
          e.preventDefault();
          location.hash = target;
      });
    });
  }

答案 1 :(得分:16)

这就是我使用的:

function scrollToDiv(element){
    element = element.replace("link", "");
    $('html,body').unbind().animate({scrollTop: $(element).offset().top-50},'slow');
};

...其中50是要加/减的像素数。

答案 2 :(得分:13)

此代码适用于我的网站尊重&#34; 150px&#34;顶部固定菜单的高度。

<!-- SMOOTH SCROLL -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<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-150
        }, 1000);
        return false;
      }
    }
  });
});
</script>
<!-- End of SMOOTH SCROLL -->

答案 3 :(得分:5)

LOL)

<span class="anchor" id="section1"></span>
<div class="section"></div>

<span class="anchor" id="section2"></span>
<div class="section"></div>

<span class="anchor" id="section3"></span>
<div class="section"></div>

<style>
.anchor{
  display: block;
  height: 115px; /*same height as header*/
  margin-top: -115px; /*same height as header*/
  visibility: hidden;
}
</style>

答案 4 :(得分:1)

我无法使用Jonathan Savage的解决方案,因为我没有错误地将事件回调传递给animate()。我今天遇到了这个问题并找到了一个简单的解决方案:

      var $target = $(this.hash), target = this.hash;
      if (target) {
        var targetOffset = $target.offset().top - 92;
        $(this).click(function(event) {
          event.preventDefault();
          $(scrollElem).animate({scrollTop: targetOffset}, 400, function() {
            location.hash = targetOffset;
          });
        });

从targetOffset变量中减去像素偏移量,然后将location.hash分配给该变量。滚动到目标哈希时停止页面跳转。

答案 5 :(得分:0)

这是我使用的jQuery实现,它基于НикитаАндрейчук的解决方案。像素调整变量可以通过这种方式动态设置,但在此示例中它是硬编码的。

{{1}}

答案 6 :(得分:0)

这是我使用的。将偏移量设置为您需要的值。

$('a[href^="#"]').click(function(e) {
  e.preventDefault();
  $(window).stop(true).scrollTo(this.hash {duration:1000,interrupt:true,offset: -50});
});

答案 7 :(得分:0)

这是我使用的jQuery代码段,发现它非常实用且灵活。如果在建议的页脚中运行DOM Ready,则可以将其删除。只需加载任何1.4v后的库即可。它侦听所有对锚点的单击,然后运行一个布尔值和一个OR来进行类检查。如果找到一个类,它将遍历脚本和动画。您可以从其结束位置调整偏移量,在大多数应用程序中,我更喜欢60px,但可以根据需要随时进行调整。

<!--jQuerySmoothScroll-->
<script>
jQuery(document).ready(function(){
  	// Add smooth scrolling to all links
  	jQuery("a").on('click', function(event) {
      //check that we have the smooth-scroll class add as many as need be
            if (jQuery(this).hasClass("whatever-class-you-want") || jQuery(this).hasClass("smooth-scroll")) {
    			// Make sure this.hash has a value before overriding default behavior
   		 			if (this.hash !== "") {
      					// Prevent default anchor click behavior
      				event.preventDefault();
      			// Store hash
      			var hash = this.hash;
     	 	// Using jQuery's animate() method to add smooth page scroll
      		// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
        jQuery('html, body').animate({
        scrollTop: jQuery(hash).offset().top-60// Set offset from top position
       }, 800, function(){
   
        // Add hash (#) to URL when done scrolling (default click behavior)
        window.location.hash = hash;
      });
     } // End if
    } // End if (class)
  });
});
</script>

答案 8 :(得分:-2)

不想学习Java脚本,总在寻找最简单的选择,只需在要着陆的锚点上方创建一个空DIV,然后在CSS中将div

anchorpointl {margin-top:-115px;}

或者无论您要高于还是低于您要完成的工作