如何使用具有固定元素的哈希在顶部平滑滚动浏览器窗口?

时间:2011-08-31 09:19:00

标签: javascript jquery scroll css-position

我的网站顶部有一个fixed导航栏,其中包含指向其余内容中的achors的链接,如下所示:

<header style="position:fixed">
  <a href="#hello">Scroll to Headline Hello</a>
</header>
<article>
  <h1><a name="hello" id="hello">Hello</a><h1>
</article>

当有人点击链接时,标题会遮盖相应的标题,因为浏览器会将其直接放置在视口的开头。我尝试使用此处描述的csstricks的jQuery脚本http://css-tricks.com/snippets/jquery/smooth-scrolling/来流畅地滚动到targetOffset + heightOfHeader,但这只是使内容随机上下跳跃。

这是脚本:

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

});

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:0)

我看到你用jquery标记了这个问题。我喜欢使用scrollTo插件来实现这一目标。

http://flesler.blogspot.com/2007/10/jqueryscrollto.html