jQuery视差导航不会滚动到目标

时间:2014-07-09 15:09:41

标签: javascript jquery parallax scrolltop

我已经组装了一个视差滚动演示,但我在内容之间导航时遇到问题。

  • HeaderFooter已修复,其他所有内容均未确定。

  • 关于变量section3Top section4Top我猜身高并未正确计算。

我无法看到这个问题。

请查看我的演示,然后点击菜单。它应该通过单击菜单,滚动和调整大小来工作。

演示:http://fiddle.jshell.net/Zza7t/

JS:

function redrawDotNav(){
    var section1Top =  0;
    var section2Top =  $('#BuyKeep').offset().top - (($('#Rentals').offset().top - $('#BuyKeep').offset().top) / 2);
    var section3Top =  $('#Rentals').offset().top - (($('#WaystoWatch').offset().top - $('#Rentals').offset().top) / 2);
    var section4Top =  $('#WaystoWatch').offset().top - (($(document).height() - $('#WaystoWatch').offset().top) / 2);

    $('nav#primary a').removeClass('active');

    if($(document).scrollTop() >= section1Top && $(document).scrollTop() < section2Top){
        $('nav#primary a.about').addClass('active');
    } else if ($(document).scrollTop() >= section2Top && $(document).scrollTop() < section3Top){
        $('nav#primary a.BuyKeep').addClass('active');
    } else if ($(document).scrollTop() >= section3Top && $(document).scrollTop() < section4Top){
        $('nav#primary a.Rentals').addClass('active');
    } else if ($(document).scrollTop() >= section4Top){
        $('nav#primary a.WaystoWatch').addClass('active');
    }
}

function scrollFooter(scrollY, heightFooter) {

    if(scrollY >= heightFooter) {
      $('#WaystoWatch').css({
          'bottom' : '0px'
      });
    }
    else {
      $('#WaystoWatch').css({
          'bottom' : '-' + heightFooter + 'px'
      });
    }
}

    function heightsCalculator(){
        var windowHeight    = $(window).height(),
        footerHeight    = $('#WaystoWatch').height(),
        heightDocument  = (windowHeight) + ($('#BuyKeep').height()) + ($('#Rentals').height()) + ($('#WaystoWatch').height()) - 0;

        $('#scroll-animate, #scroll-animate-main').css({
            'height' :  heightDocument + 'px'
        }); 
        $('#about').css({
            'height' : windowHeight + 'px'
        });
        $('.wrapper-parallax').css({
            'margin-top' : windowHeight + 'px'
        });

        scrollFooter(window.scrollY, footerHeight);

        window.onscroll = function(){
        var scroll = window.scrollY;

        $('#scroll-animate-main').css({
            'top' : '-' + scroll + 'px'
        });

        $('#about').css({
            'background-position-y' : 50 - (scroll * 100 / heightDocument) + '%'
        });

        scrollFooter(scroll, footerHeight);

        }
  }

1 个答案:

答案 0 :(得分:0)

唯一不适用于我的链接是&#34;页脚&#34; ..因为您将其位置固定,当您向上和向下滚动页面时,它将改变其偏移量。您希望对标题执行相同的操作并滚动页面的特定位置,在本例中为底部。还有一些东西会重新调整你的“页脚”的大小。高度,我无法找到你在做这个或为什么这样做,但我认为它是没有必要的。

$('a.WaystoWatch').click(function(){
    $('html, body').animate({
        scrollTop:$('body').height()
    }, 1000, function() {
        parallaxScroll(); 
    });
    return false;
});

JSFIDDLE HERE