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

//导航栏操作
  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;
 width: 100%;
 top: 0;
 z-index: 99;
}

posted @ 2019-12-01 17:51  xiren88  阅读(151)  评论(0)    收藏  举报