if($(window).width() > 785) { $(".header_nav li").each(function() { if($(this).find(".nav_down").children("dl").length > 0) { $(this).find("em").css("display", "inline-block") } }) } if($(window).width() > 785) { $(".header_nav li").each(function() { if($(this).find(".nav_down").children("dl").length < 1) { $(this).find(".nav_down").css("display", "none") } }) } if($(window).width() <= 785) { document.body.addEventListener('touchstart', function() {}); $(".menuBtn").click(function() { $(this).toggleClass("on") $(".header_nav").slideToggle("slow") }) } else { new WOW().init(); $(".menuBtn").click(function() { $(".menu_warp").addClass("on") $(".menu_colse").addClass("on") }) } $(".menu_colse").click(function() { $(".menu_warp").removeClass("on") $(".menu_colse").removeClass("on") }) $(".soubtn").click(function() { $(".z_mask").fadeToggle(500) $(".search_top").toggleClass("on") }) $(".z_mask,.menuBtn").click(function() { $(".z_mask").fadeOut(500) $(".search_top").removeClass("on") }) $(".menu_con dd li a").each(function() { if($(this).siblings(".menu_down").children().length > 0) { $(this).addClass("on") } }) $(".menu_con dd li").hover(function() { if($(this).find(".menu_down").children().length > 0) { $(this).find(".menu_down").stop().slideDown(); $(this).addClass("on") } }); $(".menu_con dd li").mouseleave(function() { if($(this).find(".menu_down").children().length > 0) { $(this).find(".menu_down").stop().slideUp(); $(this).removeClass("on") } }); var Public = { //banner Banner: function(a) { var a = a || {}; var opt = $.extend({ 'boxCell': '.banner', 'titCell': '.hd', 'mainCell': '.bd', 'vis': 1, 'autoPage': true, 'autoPlay': true, 'prevCell': '.prev', 'nextCell': '.next', 'pnLoop': true, effect: 'left', trigger: 'mouseover', delayTime: 500, interTime: 3000, startFun: function() {} }, a); jQuery(opt.boxCell).slide({ titCell: opt.titCell, mainCell: opt.mainCell, effect: "left", autoPlay: opt.autoPlay, autoPage: opt.autoPage, vis: opt.vis, prevCell: opt.prevCell, nextCell: opt.nextCell, pnLoop: opt.pnLoop, effect: opt.effect, trigger: opt.trigger, delayTime: opt.delayTime, interTime: opt.interTime, startFun: opt.startFun, endFun: function(i, c) {}, }); }, //banner end //tab Tab: function(a) { var a = a || {}; var opt = $.extend({ 'boxCell': '.tab', 'titCell': '.hd li', 'mainCell': '.bd', effect: 'fold', trigger: 'mouseover', 'pnLoop': true, prevCell: '.prev', nextCell: '.next', startFun: function() {} }, a); jQuery(opt.boxCell).slide({ titCell: opt.titCell, mainCell: opt.mainCell, effect: opt.effect, trigger: opt.trigger, pnLoop: opt.pnLoop, nextCell: opt.nextCell, prevCell: opt.prevCell, startFun: opt.startFun }); }, //tab } //阻止默认行为 // preventDefault:function(el){ // el.addEventListener('touchmove',function(e){ // e.preventDefault(); // }); // }, $(".fam_bar li,.gy_icon li").each(function(i, e) { $(this).addClass("wow fadeInRight"); $(this).attr("data-wow-delay", +(i * 0.2) + "s"); });