// 页面菜单初始化 $(function () { var str = window.location.href; console.log(str); $(".head-center").children("li").each(function () { if (str.indexOf($(this).attr("cur")) > 0) { $(this).siblings().find("a").removeClass("nav-active"); $(this).children("a").addClass("nav-active"); } }); }) //修改移动端右上角tab var check = 2; $(".mobile-head-right").click(function () { if (check == 1) { $(".mobile-head-right:hover span:nth-child(1)").removeClass("span-1"); $(".mobile-head-right:hover span:nth-child(2)").removeClass("span-2"); $(".mobile-head-right:hover span:nth-child(3)").removeClass("span-3"); $(".mobile-nav").removeClass("mobile-nav-active"); check = 2; } else { $(".mobile-head-right:hover span:nth-child(1)").addClass("span-1"); $(".mobile-head-right:hover span:nth-child(2)").addClass("span-2"); $(".mobile-head-right:hover span:nth-child(3)").addClass("span-3"); $(".mobile-nav").addClass("mobile-nav-active"); check = 1; } }); var zw = $("html").width(); // $(function () { // // 惯性下拉 // if (!!window.ActiveXObject || "ActiveXObject" in window) { // console.log("这是IE浏览器!") // } else { // if (zw > 1200) { // luxy.init({ // wrapper: '#luxy', // targets: '.luxy_el', // wrapperSpeed: 0.08 // }); // } // } // }) AOS.init({ duration: 800, offset: 100, once: true, disable: 'mobile', });