微信公众号
微信企业号
服务号








元素上 document.documentElement.style.fontSize = baseFontSize; } $(document).ready(function () { $(".glories_box .img_box .img").click(function () { if(window.innerWidth > 992){ console.log($(this).find("img").attr("src")); var imageSrc = $(this).find("img").attr("src"); $("#overlayImage").attr("src", imageSrc); $("body").css("overflow","hidden"); $("#overlay").fadeIn(); } }); $("#overlay").click(function () { if(window.innerWidth > 992){ $("body").css("overflow","visible"); $("#overlay").fadeOut(); } }); $(".swiper-slide").click(function () { if(window.innerWidth > 992){ console.log($(this).find("img").attr("src")); var imageSrc = $(this).find("img").attr("src"); $("#overlayImage").attr("src", imageSrc); $("body").css("overflow","hidden"); $("#overlay").fadeIn(); } }); }); // 特效初始化 AOS.init({ disable: window.innerWidth < 992, duration: 800 }); // 荣誉证书轮播图 function swiper_go_go_go(){ var mySwiper = new Swiper('.mn-swiper', { autoplay: true, touchRatio:1, speed: 1500, //匀速时间 loop : true, freeMode:true, //设置为true则变为free模式 slidesPerView:4, slidesPerGroup:1, navigation: { nextEl: '.arrow-right', prevEl: '.arrow-left', }, }) } // 移动端遮罩层点击展开 function openNav() { document.getElementById("myNav").style.width = "100%"; document.getElementById("body").style.overflow = "hidden"; } // 移动端遮罩层点击收起 function closeNav() { document.getElementById("myNav").style.width = "0%"; }