淘联网络
首页 产品服务 关于我们 联系我们
首页 产品服务 '; } else { // 关闭菜单 mobileMenu.classList.add('opacity-0', '-translate-y-full', 'pointer-events-none'); mobileMenu.classList.remove('opacity-100', 'translate-y-0', 'pointer-events-auto'); menuBtn.innerHTML = ''; } }); // 点击移动端菜单链接后关闭菜单 const mobileLinks = mobileMenu.querySelectorAll('a'); mobileLinks.forEach(link => { link.addEventListener('click', function() { mobileMenu.classList.add('opacity-0', '-translate-y-full', 'pointer-events-none'); mobileMenu.classList.remove('opacity-100', 'translate-y-0', 'pointer-events-auto'); menuBtn.innerHTML = ''; }); }); // 平滑滚动 document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { window.scrollTo({ top: target.offsetTop - 80, behavior: 'smooth' }); } }); });