(function (doc, win) { // 点击显示导航 $('.header-nav-mobile1').click(function() { console.log('1111') $('.navigation-wrap').show() settimeout(() => { $('.navigation-bg').css('opacity', '1'); $('.navigation-box').css('right', '0'); }, 100); $('body').css('overflow', 'hidden') $('.header-nav-mobile1').hide(); $('.header-nav-mobile2').show(); }) $('.header-nav-mobile2').click(function() { $('.navigation-box').css('right', '-75vw'); $('.navigation-bg').css('opacity', '0'); settimeout(() => { $('.navigation-wrap').hide() }, 200); $('body').css('overflow', 'auto') $('.header-nav-mobile2').hide(); $('.header-nav-mobile1').show(); }) // 二级导航收缩 $('.navigation-item').click(function() { if ($(this).next('.navigation-level').css("display") == "none") { $(this).next('.navigation-level').show(); $(this).find('.navigation-item-icon').css('transform', 'rotate(90deg)'); } else { $(this).next('.navigation-level').toggle(); $(this).find('.navigation-item-icon').css('transform', 'rotate(0deg)'); } }) })(document, window);