一阶段项目总结 导航栏 滚动监听固定

//导航栏操作
  var hd = $(".header2").offset().top;
  $(window).scroll(function() {
   var hu = $(document).scrollTop();
   // alert(hui);
   // console.log(hui);
   //console.log(dd);
   if (hu <= 500) {
    $(".header2").removeClass("nav1");
    console.log(hu);
   } else{
    $(".header2").addClass("nav1").slideDown();
  }
  })

.nav1{
 position: fixed;
  100%;
 top: 0;
 z-index: 99;
}

原文地址:https://www.cnblogs.com/zqy6666/p/11966821.html