$(document).ready(() => { setHeaderStyle(); $(document).scroll(setHeaderStyle); window.addEventListener('resize', debounce(handleResize, 500)); $('.ias-tpl-footer-content-right-item-title-container').click(function () { if (window.innerWidth <= 1200) { // 鍙充晶鎶樺彔鎸夐挳鏍峰紡 $(this) .children('.ias-tpl-footer-content-right-item-title-button') .toggleClass('ias-tpl-footer-content-right-item-content-rotate'); // 鎺у埗鎶樺彔闈㈡澘 $(this).next('.ias-tpl-footer-content-right-item-content-list-container').slideToggle('fast'); } }); // 鎺у埗浜岀淮鐮佹樉闅� $('.ias-tpl-footer-media-item-container').click(function () { if (window.innerWidth <= 1200) { setTimeout(() => { $(this).children('.ias-tpl-footer-media-qrcode').css('display', 'flex'); }, 0); } }); $(document).click(function () { if (window.innerWidth <= 1200) { $('.ias-tpl-footer-media-qrcode').css('display', 'none'); } }); // 缁欑Щ鍔ㄧ鐨刪eader menu娣诲姞浜嬩欢 $('.ias-mobile-header-menu').click(function () { const curScrollTop = $(document).scrollTop(); if ($('.ias-mobile-header-menu').hasClass('ias-mobile-header-menu-active') && curScrollTop === 0) { $('.ias-mobile-tpl-header').removeClass('ias-mobile-tpl-header-active'); } else { $('.ias-mobile-tpl-header').addClass('ias-mobile-tpl-header-active'); } if ($('.ias-mobile-header-menu').hasClass('ias-mobile-header-menu-active')) { $('body').removeClass('ias-tpl-overflow-hidden'); } else { $('body').addClass('ias-tpl-overflow-hidden'); } $('.ias-mobile-header-menu').toggleClass('ias-mobile-header-menu-active'); $('.ias-mobile-tpl-header-nav-list').toggleClass('ias-mobile-tpl-header-nav-list-active'); }); }); function setHeaderStyle() { const curScrollTop = $(document).scrollTop(); if (curScrollTop === 0) { $('.ias-tpl-header').removeClass('ias-tpl-header-hover'); $('.ias-tpl-header').addClass('ias-tpl-header-default'); $('.ias-mobile-tpl-header').removeClass('ias-mobile-tpl-header-active'); } else { $('.ias-tpl-header').removeClass('ias-tpl-header-default'); $('.ias-tpl-header').addClass('ias-tpl-header-hover'); $('.ias-mobile-tpl-header').addClass('ias-mobile-tpl-header-active'); } } function handleResize() { if (window.innerWidth > 1200) { $('body').removeClass('ias-tpl-overflow-hidden'); } else { if ($('.ias-mobile-header-menu').hasClass('ias-mobile-header-menu-active')) { $('body').addClass('ias-tpl-overflow-hidden'); $('.ias-mobile-tpl-header').addClass('ias-mobile-tpl-header-active'); } } } function debounce(fn, t) { let timer; return function () { const ctx = this; const args = arguments; clearTimeout(timer); timer = setTimeout(function () { fn.apply(ctx, args); }, t); }; }