$(window).ready(function () { // header $(window).scroll(function () { var top = $(window).scrollTop(), ban = $(window).height() / 2; if (top > 10) { $(".leftSlide").addClass("show"); } if (top < ban) { $(".leftSlide").removeClass("show"); } }) // mblNav $(".headMenu").on('click', function () { $(this).toggleClass("show").fadeIn(); $(".headBox").fadeToggle(); }); $(".headBox_div li>a").on('click', function () { var _this=$(this).parents("li").find(".headNav_slide"); _this.slideToggle(); _this.parents("li").siblings().find(".headNav_slide").slideUp(); $(this).find("i").toggleClass("desc") $(this).parents("li").siblings().find("i").removeClass("desc") }) function headHandler() { // header if ($(window).width() < 1024) { $("header").addClass("mbl") } else { $("header").removeClass("mbl") } // index- indPro if ($(window).width() > 1025) { $(".indPro_item").hover(function () { $(this).parents(".indPro_box").addClass("hover") $(".indPro_box").addClass("show"); $(".indPro_item").removeClass("on"); $(this).addClass("on"); $(".indPro_img").on('mousemove', function () { $(this).parents(".indPro_box").addClass("hover") }) }, function () { $(".indPro_img").css({ "z-index": -1 }) $(".indPro_box").removeClass("hover"); }) } else { $(".indPro_box").removeClass("hover"); $(".indPro_item").removeClass("on"); } } headHandler(); $(window).resize(function () { headHandler(); }) $(".headRigt").on('click', function () { $(this).toggleClass("cls"); $(".topSlide").toggleClass("active"); }) $("header").hover(function () { $("header").addClass("bg") }, function () { $("header").removeClass("bg") }) // header - product function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); return null; } // header - proNav if (parseInt(getQueryString('id')) == 251) { $(".product_proNav").find("li[data-index='" + 251 + "']").addClass("on").siblings().removeClass("on") } if (parseInt(getQueryString('id')) == 252) { $(".product_proNav").find("li[data-index='" + 252 + "']").addClass("on").siblings().removeClass("on") } if (parseInt(getQueryString('id')) == 253) { $(".product_proNav").find("li[data-index='" + 253 + "']").addClass("on").siblings().removeClass("on") } if (parseInt(getQueryString('id')) == 254) { $(".product_proNav").find("li[data-index='" + 254 + "']").addClass("on").siblings().removeClass("on") } $(".proNav li").on('click', function () { $(this).addClass("on").siblings().removeClass("on") }) // caseList - proNav if (parseInt(getQueryString('id')) == 261) { $(".caseList_proNav").find("li[data-index='" + 261 + "']").addClass("on").siblings().removeClass("on") } if (parseInt(getQueryString('id')) == 262) { $(".caseList_proNav").find("li[data-index='" + 262 + "']").addClass("on").siblings().removeClass("on") } if (parseInt(getQueryString('id')) == 263) { $(".caseList_proNav").find("li[data-index='" + 263 + "']").addClass("on").siblings().removeClass("on") } if (parseInt(getQueryString('id')) == 264) { $(".caseList_proNav").find("li[data-index='" + 264 + "']").addClass("on").siblings().removeClass("on") } // index $(".indNews_nav li").on('click', function () { $(this).addClass("on").siblings().removeClass("on"); var index = $(this).index() + 1; $(".indNews_box>div").eq(index).fadeIn().siblings().hide(); }) })