// javascript document $(document).ready(function() { $('.content-box table').each(function(){ $(this).wrapall("
"); }) new wow().init(); //点击导航外收起 $('html').click(function(){ $('.nav-btn').removeclass('nav-btn-show'); $('.body-box').removeclass('body-box-show'); $('.nav-box').removeclass('nav-box-show'); $('.nav').removeclass('nav-show'); $('.lang dd').slideup(50); $('.nav-bg-02').removeclass('nav-bg-02-show'); $('.footer-r dd').hide(); $(".kcxz-box dd").hide(); $('.nav-r .search-bd').removeclass('search-bd-show'); }) //搜索选中 $('.nav-r .search-bd input').focus(function(){ propagation(); $('.nav-r .search-bd').addclass('search-bd-show'); }) //导航链接判断 $('.nav li>a').click(function(e){ if($('.nav-box .container').outerwidth()<960 && $(this).next('div').length>0){ stopdefault(e); } }) //移动端导航事件 $('.nav-btn').click(function(event){ propagation(); $('body').animate({scrolltop:0},100); $(this).toggleclass('nav-btn-show'); $('.body-box').toggleclass('body-box-show'); $('.nav-box').toggleclass('nav-box-show'); $('.nav').toggleclass('nav-show'); $('.lang dd').slideup(50); $('.nav-bg-02').toggleclass('nav-bg-02-show'); }); $('.nav li').click(function(){ $('.lang dd').removeclass('lang-show'); if($('.nav-box .container').outerwidth()<960){ $(this).toggleclass('nav-on').siblings().removeclass('nav-on'); $(this).find('div').addclass('sub-show').parent().siblings().find('div').removeclass('sub-show'); if($('.nav li').index()==$('.nav li').length){ } } }); $('.nav-box').click(function(event){ propagation(); $('.lang dd').removeclass('lang-show'); }); //pc端导航事件 $('.nav li').mouseenter(function(){ if($('.nav-box .container').outerwidth()>=960){ $('.nav li div').slidedown(100); $('.nav li').removeclass('nav-on'); $(this).addclass('nav-on').siblings().addclass('nav-off'); } }); $('.nav').mouseleave(function(){ if($('.nav-box .container').outerwidth()>=960){ $('.nav li div').slideup(50); $(this).find('li').removeclass('nav-on').siblings().removeclass('nav-off'); } }); //视频弹窗 $('.video-play').click(function(){ $('.video-box-pf').show().queue(function () { $(this).addclass("fadeindown"); $(this).dequeue(); }); $('.tc-bg').show().queue(function () { $(this).addclass("fadein"); $(this).dequeue(); }); $('.show-video').attr('src',$(this).attr('data-src')); var showvideo = $('.show-video')[0]; showvideo.play(); $('.video-pdc').css({'height':$('.video-pdc').width()*0.6+80,'margin-top':-$('.video-pdc').width()*0.3-40}) }) $(window).resize(function() { $('.video-pdc').css({'height':$('.video-pdc').width()*0.6+80,'margin-top':-$('.video-pdc').width()*0.3-40}) //全屏时其他元素置底 var fullstate = document.fullscreen || document.mozfullscreen || document.webkitisfullscreen; if(fullstate){ $('.body-box').addclass('profz-1'); $('.nav-box').addclass('profz-1'); $('.tc-bg').addclass('profz-1'); }else{ $('.body-box').removeclass('profz-1'); $('.nav-box').removeclass('profz-1'); $('.tc-bg').removeclass('profz-1'); } }); //弹窗关闭 $('.pf-close').click(function(){ $(".video-box-pf").removeclass("fadeindown").fadeout(); $(".tc-bg").removeclass("fadeindown").fadeout(); var showvideo = $('.show-video')[0]; showvideo.pause(); }) //实用简易切换 $('.tabs-box').each(function(){ $(this).find('.hd>*').eq(0).addclass('on'); $(this).find('.bd>*').eq(0).show().siblings().hide(); $(this).find('.bdl>*').eq(0).show().siblings().hide(); }) $('.tabs-box .hd>*').click(function(){ $(this).addclass('on').siblings().removeclass('on'); $(this).parents('.tabs-box').find('.bd>*').eq($(this).index()).show().siblings().hide(); $(this).parents('.tabs-box').find('.bdl>*').eq($(this).index()).show().siblings().hide(); }) //浏览器版本提示 mybrowser(); var tips ="
您当前的浏览器版本过低,网站部分功能将无法正常显示,请更新您的浏览器。
"; if (mybrowser() == "ff") { } if (mybrowser() == "opera") { } if (mybrowser() == "safari") { } if (mybrowser() == "ie55") { $("body").prepend(tips); } if (mybrowser() == "ie6") { $("body").prepend(tips); } if (mybrowser() == "ie7") { $("body").prepend(tips); } if (mybrowser() == "ie8") { $("body").prepend(tips); } }); $(window).resize(function() { }); //浏览器版本判断 function mybrowser(){ var useragent = navigator.useragent; //取得浏览器的useragent字符串 var isopera = useragent.indexof("opera") > -1; //判断是否opera浏览器 var isie = useragent.indexof("compatible") > -1 && useragent.indexof("msie") > -1 && !isopera; //判断是否ie浏览器 var isff = useragent.indexof("firefox") > -1; //判断是否firefox浏览器 var issafari = useragent.indexof("safari") > -1; //判断是否safari浏览器 if (isie) { var ie5 = ie55 = ie6 = ie7 = ie8 = false; var reie = new regexp("msie (\\d+\\.\\d+);"); reie.test(useragent); var fieversion = parsefloat(regexp["$1"]); ie55 = fieversion == 5.5; ie6 = fieversion == 6.0; ie7 = fieversion == 7.0; ie8 = fieversion == 8.0; if (ie55) { return "ie55"; } if (ie6) { return "ie6"; } if (ie7) { return "ie7"; } if (ie8) { return "ie8"; } }//isie end if (isff) { return "ff"; } if (isopera) { return "opera"; } } //swiper2.x,auto显示数量 function swipersl(cla,obj,ss,mm,ll){ swiperdx(cla,obj,ss,mm,ll); $(window).resize(function() { swiperdx(cla,obj,ss,mm,ll); }); } function swiperdx(c,o,s,m,l){ var x = $(c).outerwidth(); if(x>=960){ $(c).find('.swiper-slide').css('width',x/l); }else if(x>=720){ $(c).find('.swiper-slide').css('width',x/m); }else{ $(c).find('.swiper-slide').css('width',x/s); } o.resizefix(); } //阻止冒泡事件 function propagation(){ if (event.stoppropagation) { // this code is for mozilla and opera event.stoppropagation(); } else if (window.event) { // this code is for ie window.event.cancelbubble = true; } } //阻止跳转 function stopdefault(e) { if ( e && e.preventdefault ) e.preventdefault(); else window.event.returnvalue = false; return false; } //设备横竖屏判断 window.addeventlistener("onorientationchange" in window ? "orientationchange" : "resize", function() { //竖屏 if (window.orientation === 180 || window.orientation === 0) { $('html').removeclass('landscape'); } //横屏时提示 if (window.orientation === 90 || window.orientation === -90 ){ $('html').addclass('landscape'); } }, false);