File: /www/wwwroot/wood-lk.cn/wp-content/themes/mlk/assets/js/global.js
function getScroll() {
if ($(window).scrollTop() > 90) {
$(".header").addClass('header-fixed');
} else {
$(".header").removeClass('header-fixed');
}
}
getScroll();
$(window).scroll(function() {
getScroll();
});
//
/*
导航菜单
*/
function clearTouch(el, oStyle) {
$(el).css('overflow', oStyle);
$(el).on("touchmove", function(e) {
e.preventDefault;
})
}
let oNavDom = $('.header-nav ul').prop("outerHTML");
$('.navbar').click(function() {
$('.mobile-nav').addClass('show-mobile');
$('.mobile-menu').append(oNavDom);
clearTouch("body", "hidden")
})
$('.close-btn').click(function() {
$('.mobile-menu').empty();
$('.mobile-nav').removeClass('show-mobile');
clearTouch("body", "auto")
})