$(function(){ 

  $(document).scroll(function(){
  

 var scrollTops=$(window).scrollTop();
if (scrollTops>43){
$("header").addClass("headerFixed");
}else{
$("header").removeClass("headerFixed");
}
  })


  })

})

相关文章:

  • 2021-10-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-12
  • 2022-12-23
猜你喜欢
  • 2021-12-23
  • 2022-12-23
  • 2021-07-19
  • 2022-12-23
  • 2022-12-23
  • 2021-08-27
  • 2021-12-23
相关资源
相似解决方案