网站滚动n个像素后,头部固定

//固顶
$(window).scroll(function() {
var top = $(window).scrollTop();
if(top>=1200){
$(".x_menu").addClass("x_fixed");
}else{
$(".x_menu").removeClass("x_fixed");
}
});

原文地址:https://www.cnblogs.com/fkcqwq/p/8365999.html