用到的插件是Custom CSS & JS:
jQuery代码:
jQuery(document).ready(function( $ ){
$(document).on(‘scroll’, function(){
if ($(document).scrollTop() 大于(大于号无法输入到这里) 100) {
$(“header”).addClass(“fixed”);
}else {
$(“header”).removeClass(“fixed”);
}
});
});
CSS代码:
header.fixed {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 99;
}
source