$(window).load(function() { var sbWidth=$(window).width(); function configIframe(){ /*给首页产品分类宽度值*/ var pro_hdW=0; $(".h_products .pro_hd ul").find("li").each(function(){ pro_hdW += $(this).width()+2; }); $(".h_products .pro_hd ul").width(pro_hdW); } configIframe(); /*窗口改变事件*/ window.onresize = function () { /*window.location.reload();*/ configIframe(); } }); /*网站导航点击事件*/ var menu_flag=0; $('.btn-menu').click(function(event){ if(menu_flag==0){ $(this).toggleClass('active'); $('.navigation').slideToggle(300); menu_flag=1; }else{ $(this).toggleClass('active'); $('.navigation').slideToggle(300); menu_flag=0; } event.stopPropagation(); }); /*导航搜索框点击事件*/ var search_flag=0; $('.h_search_wrap').click(function(event){ if(search_flag==0){ $('.h_search').slideDown(); $(this).addClass('h_search_wrap2'); search_flag=1; }else{ $('.h_search').slideUp(); $(this).removeClass('h_search_wrap2'); search_flag=0; } }); /*产品目录收缩*/ $(".menu_li>a").hover(function() { $(".menu_li>ul").hide(); $(this).next('ul').show(); }, function() { }); /*联系方式tab切换*/ $(".contact .tags_title .one").hover(function(){ $(this).removeClass('ron'); $(".contact .tags_title .two").addClass('ron'); $(".contact .content2").hide(); $(".contact .content1").show(); },function(){ }); $(".contact .tags_title .two").hover(function(){ $(this).removeClass('ron'); $(".contact .tags_title .one").addClass('ron'); $(".contact .content1").hide(); $(".contact .content2").show(); },function(){ }); /*产品目录收缩*/ $(".pro_mulu>ul>li").on('click',function(){ $(this).find('p').stop(true).toggleClass('on'); $(this).children('div').stop(true).slideToggle(300); }); /*手机端产品目录展开*/ var menu_tit_flag=0; $('.ny_content .content_left .c_tlt').on('click',function(){ if ( matchMedia( 'only screen and (max-width:767px)' ).matches ) { if(menu_tit_flag==0){ $('.ny_content .content_left .pro_mulu').stop(true).slideToggle(300); $(this).children('em').html('点击收起 -'); menu_tit_flag=1; }else{ $('.ny_content .content_left .pro_mulu').stop(true).slideToggle(300); $(this).children('em').html('点击展开+'); menu_tit_flag=0; } } }); /* -----QQ 侧边悬浮 ---- */ $( ".suspension .a").bind("mouseenter", function(){ var _this = $(this); var s = $(".suspension"); var isService = _this.hasClass("a-service"); var isServicePhone = _this.hasClass("a-service-phone"); var isQrcode = _this.hasClass("a-qrcode"); if(isService){ s.find(".d-service").show().siblings(".d").hide();} if(isServicePhone){ s.find(".d-service-phone").show().siblings(".d").hide();} if(isQrcode){ s.find(".d-qrcode").show().siblings(".d").hide();} }); $(".suspension, .suspension .a-top").bind("mouseleave", function(){ $(".suspension").find(".d").hide(); }); $(".suspension .a-top").bind("mouseenter", function(){ $(".suspension").find(".d").hide(); }); $(".suspension .a-top").bind("click", ".suspension .a-top", function(){ $("html,body").animate({scrollTop: 0}); }); $(window).scroll(function(){ var st = $(document).scrollTop(); var $top = $(".suspension .a-top"); if(st > 400){ $top.css({display: 'block'}); }else{ if ($top.is(":visible")) { $top.hide(); } } });