Jquery滚动,活动类的顶部偏移量

时间:2015-03-20 20:10:38

标签: javascript jquery css scroll offset

你能用一件我无法管理的东西来帮助我吗?

我在网站的顶级菜单中使用了scrolling-nav.js - 内部,外部等。http://lukaszradwan.com/www_architect/services.php

现在我使用此代码

设置偏移量
$(window).scroll(function() {
if ($(".navbar").offset().top > 130) {
    $(".navbar-fixed-top").addClass("top-nav-collapse");
} else {
    $(".navbar-fixed-top").removeClass("top-nav-collapse");
}
});

$(function() {
$('a.page-scroll').bind('click', function(event) {
    var $anchor = $(this);
    $('html, body').stop().animate({
        scrollTop: $($anchor.attr('href')).offset().top - 130
    }, 1500, 'easeInOutExpo');
    event.preventDefault();
});
});

但是当您单击例如外部时,活动类不能正好在此位置工作。

我尝试使用另一个主题的方法,但我的“js”知识很差。 jquery scroll, change navigation active class as the page is scrolling, relative to sections

提前致谢。

1 个答案:

答案 0 :(得分:1)

现在,仅当section的顶部偏移为0时才应用活动类。您可以使用jquery将其更改为其他值,如130。添加以下代码:

$(window).scroll(function(){
    /* Get id of sections corresponding to top nav menu */
    var scroll_sections = []
    $('a.page-scroll').each(function(){
      scroll_sections.push($(this).attr('href'));
    })

    for (i in scroll_sections)
    {   
      /* Instead of 0, if the top position offset of section is 130 or less,
         we add active class for that section in nav menu */
      if ($(scroll_sections[i]).position().top <= $(window).scrollTop() + 130) 
      {
        $('nav li.active').removeClass('active');
        $('nav a').eq(i).parent().addClass('active');
      }
    }
});