细数逝去的过往

导航

浏览器HTML页面滚动中到id时自动切换导航

var _top2 = $(".section2").offset().top-60;

var _top3 = $(".section3").offset().top-60;
$(window).scroll(function() {
var topDistance = $(window).scrollTop();
if(topDistance > _top3){
$(".tab_service_details a").eq(2).addClass("active").siblings().removeClass("active");
}else if(topDistance > _top2){

$(".tab_service_details a").eq(1).addClass("active").siblings().removeClass("active");
}else{
$(".tab_service_details a").eq(0).addClass("active").siblings().removeClass("active");
}
});

var _top2 = $(".section2").offset().top-60;
    var _top3 = $(".section3").offset().top-60;
    $(window).scroll(function() {
        var topDistance = $(window).scrollTop();
        if(topDistance  > _top3){
            $(".tab_service_details a").eq(2).addClass("active").siblings().removeClass("active");
        }else if(topDistance  > _top2){
            
            $(".tab_service_details a").eq(1).addClass("active").siblings().removeClass("active");
        }else{
            $(".tab_service_details a").eq(0).addClass("active").siblings().removeClass("active");
        }
    });

 

posted on 2017-07-06 17:04  细数逝去的过往  阅读(242)  评论(0)    收藏  举报