//wow配置 var wow = new WOW({ boxClass: 'wow', animateClass: 'animated', offset:0, mobile: false, live: true }); function isMobile() { var userAgentInfo = navigator.userAgent; var mobileAgents = [ "Android", "iPhone", "SymbianOS", "Windows Phone", "iPad","iPod"]; var mobile_flag = false; //根据userAgent判断是否是手机 for (var v = 0; v < mobileAgents.length; v++) { if (userAgentInfo.indexOf(mobileAgents[v]) > 0) { mobile_flag = true; break; } } var screen_width = window.screen.width; //根据屏幕分辨率判断是否是手机 if(screen_width <= 992){ mobile_flag = true; } return mobile_flag; } $(function(){ //wow初始化 wow.init(); //数字动画 $('.counter').countUp({ delay: 10, time: 2000 }); //pageTAB isMobile()?$('.wrapper li').length!=0?$('.wrapper').navbarscroll():'':''; //头部滚动显示 function scrollt(){ var topp = $(document).scrollTop(); if(topp > 100){ $('.header').find('.logo img').attr('src',_public+'image/logo02.png'); $('.header').addClass("onshow").find('.phoneIcon>img').attr('src',_public+'image/phoneicon02.png'); }else{ $('.header').find('.logo img').attr('src',_public+'image/logo.png'); $(".header").removeClass("onshow").find('.phoneIcon>img').attr('src',_public+'image/phoneicon.png'); } if(topp > $(window).height()-$('.header').height()){ $("#back_top").addClass('onshow'); }else{ $("#back_top").removeClass('onshow'); } } scrollt(); if(isMobile()){ $('.header').addClass("onshow").find('.logo img').attr('src',_public+'image/logo02.png') .parents('.header').find('.phoneIcon>img').attr('src',_public+'image/phoneicon.png'); }else{ $(window).scroll(function(){ scrollt() }); } //home业务范围hover if($('.business_line').length!=0){ $.each($('.business_line'), function() { var fh = $(this).find('.business_p').height(); $(this).height(fh); }); } if(!isMobile()){ $('.business_item>a').hover(function() { var th = $(this).find('.business_p').height(),lih = $(this).find('.business_li').height(); $(this).find('.business_line').height(lih); $(this).find('.business_line>div').css({'transform':'translateY(-'+th+'px)','-webkit-transform':'translateY(-'+th+'px)'}); }, function(){ var th = $(this).find('.business_p').height(); $(this).find('.business_line').height(th); $(this).find('.business_line>div').css({'transform':'none','-webkit-transform':'none'}); }); } //home业绩切换 if($('.case_list').length!=0){ $('.case_box').height($('.case_list:first-child').height()); } $(document).on('click','.case_tab .case_tab_btn>a',function(){ var is = $(this); if(!is.is('.on')){ var isht = $('.case_box').children('.case_list').eq(is.parent('.case_tab_btn').index()); is.addClass('on').parent('.case_tab_btn').siblings().children('a').removeClass('on'); $('.case_box').height(isht.height()); isht.addClass('on').siblings().removeClass('on'); } }); //菜单展开收起 $(document).on('click','#menu_btn',function(){ $('.header').is('.mobile_side')?($('.header').removeClass('mobile_side'),$('.container').removeClass('m_scale')): ($('.container').addClass('m_scale'),$('.header').addClass('mobile_side')); }); //滚动一屏 $(document).on('click','.roller',function(){ var scroll; if(isMobile()){ scroll = $(window).height()-50; }else{ scroll = $(window).height(); } $('html,body').animate({scrollTop:scroll},600); }); //返回顶部 $(document).on('click','#back_top',function(){ $('html,body').animate({scrollTop: 0},600); }); !isMobile()?$('.pageBanner_txt').length!=0?$('.pageBanner_txt').css('padding-top',$('.header').height()):'':''; //table展开收起 $(document).on('click','#check_list .Nash_check',function(){ var isthis = $(this); if(isthis.is('.on')){ isthis.removeClass('on').next('.Nash_item').find('.Nash_condition').height(0); }else{ isthis.addClass('on').next('.Nash_item').find('.Nash_condition') .height(isthis.addClass('on').next('.Nash_item').find('.Nash_condition>div').innerHeight()); } }); //悬浮type if(!isMobile()){ if($('.servicedtl_tab').length!=0){ var type_top = $('.servicedtl_tab').offset().top - 140; $(document).scroll(function() { var scroH = $(document).scrollTop(); if(scroH>=type_top){ $('.servicedtl_tab').addClass('tab_fixed'); }else{ $('.servicedtl_tab').removeClass('tab_fixed'); } }); } } })