NoteOnMe博客平台搭建
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

33 行
662 B

// Check scroll position and add/remove background to navbar
function checkScrollPosition() {
if($(window).scrollTop() > 50) {
$(".fixed-header").addClass("scroll");
} else {
$(".fixed-header").removeClass("scroll");
}
}
$(document).ready(function () {
// Single page nav
$('.fixed-header').singlePageNav({
offset: 59,
filter: ':not(.external)',
updateHash: true
});
checkScrollPosition();
// nav bar
$('.navbar-toggle').click(function(){
$('.main-menu').toggleClass('show');
});
$('.main-menu a').click(function(){
$('.main-menu').removeClass('show');
});
});
$(window).on("scroll", function() {
checkScrollPosition();
});