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

mac2022-06-30  81

$(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

最新回复(0)