// javascript document $(document).ready(function(){ /*--首页导航下拉--*/ $(".inav li").mouseover(function () { $(".inav li .nav-xl").hide(); $(this).find(".nav-xl").show(); }); /* $(".inav li").click(function (event) { $(this).find(".nav-xl").show(); event.stoppropagation(); });*/ $(".inav li .nav-xl").mouseover(function () { $(this).show(); }); $(".inav li .nav-xl").mouseout(function () { $(this).hide(); }); /*--导航下拉--*/ $(".nav li").mouseover(function () { $(".nav li .nav-xl").hide(); $(this).find(".nav-xl").show(); }); /* $(".nav li").click(function (event) { $(this).find(".nav-xl").show(); event.stoppropagation(); });*/ $(".nav li .nav-xl").mouseover(function () { $(this).show(); }); $(".nav li .nav-xl").mouseout(function () { $(this).hide(); }); /* $(document).click(function (event) { var target = $(event.target); if (target.closest(".nav-xl").length == 0) { $(".nav-xl").hide(); } });*/ $(".inav li .nav-xl-bg").click(function () { $(this).parents(".nav-xl").hide(); }); $(".nav li .nav-xl-bg").click(function () { $(this).parents(".nav-xl").hide(); }); $(".inav li .nav-xl a").click(function () { $(this).parents(".nav-xl").hide(); }); $(".nav li .nav-xl a").click(function () { $(this).parents(".nav-xl").hide(); }); /*--首页微信公众号--*/ $(".btn-weixin").click(function () { $(this).siblings(".gzh").show(); }); $(".gzh .close").click(function () { $(this).parents(".gzh").hide(); }); $(".gzh .gzh-bg").click(function () { $(this).parent(".gzh").hide(); }); /*--首页弹框--*/ $(".notice .close").click(function () { $(this).parents(".notice").hide(); }); /*--首页背景变换--*/ $(function(){ var system = { win: false, mac: false, xll: false, ipad:false }; //检测平台 var p = navigator.platform; system.win = p.indexof("win") == 0; system.mac = p.indexof("mac") == 0; system.x11 = (p == "x11") || (p.indexof("linux") == 0); system.ipad = (navigator.useragent.match(/ipad/i) != null)?true:false; if (system.win || system.mac || system.xll ||system.ipad) { $(".imnav li.l1").mouseover(function () { $(".fullbg2, .fullbg3, .fullbg4, .fullbg5").fadeout(1000); $(".fullbg").fadein(1000); }); $(".imnav li.l2").mouseover(function () { $(".fullbg, .fullbg3, .fullbg4, .fullbg5").fadeout(1000); $(".fullbg2").fadein(1000); }); $(".imnav li.l3").mouseover(function () { $(".fullbg2, .fullbg, .fullbg4, .fullbg5").fadeout(1000); $(".fullbg3").fadein(1000); }); $(".imnav li.l4").mouseover(function () { $(".fullbg2, .fullbg3, .fullbg, .fullbg5").fadeout(1000); $(".fullbg4").fadein(1000); }); $(".imnav li.l5").mouseover(function () { $(".fullbg2, .fullbg3, .fullbg4, .fullbg").fadeout(1000); $(".fullbg5").fadein(1000); }); } else { $(".imnav li.l1").mouseover(function () { }); $(".imnav li.l2").mouseover(function () { }); $(".imnav li.l3").mouseover(function () { }); $(".imnav li.l4").mouseover(function () { }); $(".imnav li.l5").mouseover(function () { }); } }) });