20.实时监听页面滚动距离

$(function(){ 

  $(document).scroll(function(){
  

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


  })

})

原文地址:https://www.cnblogs.com/sqyambition/p/8421742.html