网站滚动n个像素后,头部固定
//固顶
$(window).scroll(function() {
var top = $(window).scrollTop();
if(top>=1200){
$(".x_menu").addClass("x_fixed");
}else{
$(".x_menu").removeClass("x_fixed");
}
});
是我吖~