//无障碍弹出 $(".see_on").click(function(){ $(this).parents(".pcbody").addClass("down"); }); //移动端导航 $("#selectBut").click(function() { $(".navm-box").slideToggle("slow"); $("body").toggleClass("navShow"); if($("#selectBut").hasClass("hd1-aon1")) { $(this).removeClass("hd1-aon1") } else { $(this).addClass("hd1-aon1") } }) $(".nav-wrap .iconfont").click(function(){ if($(this).parent().find("dl").is(":hidden")){ $(this).parent().find("dl").show(500); $(this).css("transform","rotate(0deg)") }else{ $(this).parent().find("dl").hide(500); $(this).css("transform","rotate(45deg)") } }); //搜索框弹出 $('.search_m').click(function(){ $('.search_wrap').fadeIn(); if($('.search_m').hasClass("icon-close")) { $(this).removeClass("icon-close"); $('.search_wrap').fadeOut("slow"); $(this).addClass("icon-search") } else { $(this).removeClass("icon-search"); $(this).addClass("icon-close") } }); //wow var wow = new WOW({ boxClass: 'wow', animateClass: 'animated', offset: 0, mobile: false, live: true }); new WOW().init();