jQuery滚动滚动正确的位置

时间:2015-01-10 16:21:47

标签: jquery scroll

我们使用一些jQuery从页面上的某个点开始使我们的导航变得粘滞,并将活动类添加到页面上的部分。 但是当我们点击锚点网址时,这不会滚动到正确的位置。 它滚动到很远的地方,而不是正确的位置。

我在这里复制了完整的代码:http://jsfiddle.net/yb8kksxq/

我们使用这个jQuery:

 $(window).scroll(function(){
  var sticky = $('.menu-header-product'),
      scroll = $(window).scrollTop();

  if (scroll >= 50) sticky.addClass('sticky');
  else sticky.removeClass('sticky');
});
$(window).scroll(function(){
  var sticky = $('.content'),
      scroll = $(window).scrollTop();

  if (scroll >= 50) sticky.addClass('sticky');
  else sticky.removeClass('sticky');
});
    $(document).ready(function () {
        $(document).on("scroll", onScroll);

        $('a[href^="#"]').on('click', function (e) {
            e.preventDefault();
            $(document).off("scroll");

            $('a').each(function () {
                $(this).removeClass('active');
            })
            $(this).addClass('active');

            var target = this.hash;
            $target = $(target);
            $('html, body').stop().animate({
                'scrollTop': $target.offset().top+2
            }, 500, 'swing', function () {
                window.location.hash = target;
                $(document).on("scroll", onScroll);
            });
        });
    });

    function onScroll(event){
        var scrollPosition = $(document).scrollTop();
        $('nav a').each(function () {
            var currentLink = $(this);
            var refElement = $(currentLink.attr("href"));
            if (refElement.position().top <= scrollPosition && refElement.position().top + refElement.height() > scrollPosition) {
                $('nav ul li a').removeClass("active");
                currentLink.addClass("active");
            }
            else{
                currentLink.removeClass("active");
            }
        });
    }

我们如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

Sdghasemi 是正确的解决方案 -

your page has a fixed menu header which appears on scroll.
just subtract the height in your js

**change on line 30 of your js code**

$('html, body').stop().animate({
  'scrollTop': $target.offset().top-130 /**just subtract the height of the fixed html part */
 }, 500, 'swing', function () {
    window.location.hash = target;
    $(document).on("scroll", onScroll);
});