var Public = { winWidth: $(window).width(), //初始化 Init: function(){ /*$('body,html').animate({scrollTop:0});*/ smoothScroll.init({offset:95}); if($('.timer').length>0){ var a = Math.round($('.lh-power').offset().top+100); var b = Math.round($(window).scrollTop()+$(window).height()); if(a0){ $(window).scroll(function(){ var s= $(this).scrollTop()/3; $('.lh-banner .img').css({ 'background-position':'center '+s+'px' }); }); } if($('.lh-ban').length>0){ $(window).scroll(function(){ var s= $(this).scrollTop()/3; $('.lh-ban .img').css({ 'background-position':'center '+s+'px' }); }); } } //导航 this.Nav(); }, //banner Banner : function(a){ var a = a || {}; var opt = $.extend({ boxCell : '.lh-banner', stopOnLastSlide:true, slidesPerView:1, spaceBetween:0, parallax:true, pagination:'.hd', paginationType:'bullets', speed:1000, loop:false, clickable:true, grabCursor:false, direction:'horizontal', initialSlide:0, effect:'fade', mousewheel:false, scrollbar: { el: 'null', }, slideToClickedSlide:false, nextEl:'.next', prevEl:'.prev', noSwipingClass:'stop-swiping', on:'', renderBullet:null, observeParents:true, observer:true },a); if($(opt.boxCell).find('.next').length>=1){ var nextEl = $(opt.boxCell).find('.next'),prevEl = $(opt.boxCell).find('.prev'); }else{ var nextEl =opt.nextEl,prevEl =opt.prevEl; } var mySwiper = new Swiper(opt.boxCell, { parallax : opt.parallax,//data-swiper-parallax slidesPerView:opt.slidesPerView, initialSlide :opt.initialSlide, slideToClickedSlide:opt.slideToClickedSlide, pagination : { el : opt.pagination, type:opt.paginationType, clickable :opt.clickable, renderBullet:opt.renderBullet }, speed:opt.speed, loop:opt.loop, paginationClickable :opt.paginationClickable, effect : opt.effect, fadeEffect: { crossFade: true, }, spaceBetween:opt.spaceBetween, navigation: { nextEl: nextEl, prevEl: prevEl, }, grabCursor :opt.grabCursor, direction:opt.direction, mousewheel:opt.mousewheel, scrollbar:opt.scrollbar, noSwipingClass:opt.noSwipingClass, on:opt.on, observeParents:opt.observeParents, observer:opt.observer }); },//banner end //banner1 autoPlay Banner1 : function(a){ var a = a || {}; var opt = $.extend({ boxCell : '.lh-banner', stopOnLastSlide:true, parallax:true, pagination:'.hd', renderBullet:null, paginationType:'bullets', speed:800, loop:true, clickable:true, grabCursor:false, direction:'horizontal', initialSlide:0, effect:'fade', mousewheel:false, scrollbar: { el: 'null', }, slidesPerView:1, spaceBetween:0, on:'', delay:4500, },a); if($(opt.boxCell).find('.next').length>=1){ var nextEl = $(opt.boxCell).find('.next'),prevEl = $(opt.boxCell).find('.prev'); }else{ var nextEl =opt.nextEl,prevEl =opt.prevEl; } var mySwiper1 = new Swiper(opt.boxCell, { autoplay:{ delay: opt.delay, stopOnLastSlide: false, disableOnInteraction: true, }, parallax : opt.parallax,//data-swiper-parallax pagination : { el : opt.pagination, type:opt.paginationType, clickable :opt.clickable, renderBullet:opt.renderBullet }, spaceBetween:opt.spaceBetween, speed:opt.speed, loop:opt.loop, paginationClickable :opt.paginationClickable, effect : opt.effect, fadeEffect: { crossFade: true, }, navigation: { nextEl: nextEl, prevEl: prevEl, }, slidesPerView:opt.slidesPerView, grabCursor :opt.grabCursor, direction:opt.direction, mousewheel:opt.mousewheel, scrollbar:opt.scrollbar, on:opt.on }); $(opt.boxCell).mouseenter(function () { mySwiper1.autoplay.stop(); }) $(opt.boxCell).mouseleave(function () { mySwiper1.autoplay.start(); }) },//banner end //Tab Tab:function(a){ var a = a || {}; var opt = $.extend({ boxCell:'.lhTab', hdCell:'.lhTabHd', bdCell:'.lhTabBd', delay:0, trigger:'mouseover' },a) if(this.winWidth<=1024){ opt.trigger='click'; } init(); function init(){ $(opt.boxCell).each(function(){ var _this = $(this); _this.find(opt.hdCell).children('li').eq(0).addClass('on'); _this.find(opt.bdCell).children('ul').eq(0).show(opt.delay,function(){ _this.find(opt.bdCell).children('ul').eq(0).addClass('on'); }); }); TabShow(); } function TabShow(){ if(opt.trigger=='click'){ clickShow(); }else{ hoverShow(); } } function hoverShow(){ $(opt.hdCell).children('li').hover(function(){ var _this = $(this),_index=_this.index(); _this.addClass('on').siblings().removeClass('on'); _this.parents(opt.boxCell).find(opt.bdCell).children('ul').stop(true,true).hide().removeClass('on'); _this.parents(opt.boxCell).find(opt.bdCell).children('ul').eq(_index).stop(true,true).show(opt.delay,function(){ _this.parents(opt.boxCell).find(opt.bdCell).children('ul').eq(_index).addClass('on'); }); },function(){}); } function clickShow(){ $(opt.hdCell).children('li').click(function(){ var _this = $(this),_index=_this.index(); if(!_this.hasClass('on')){ _this.addClass('on').siblings().removeClass('on'); _this.parents(opt.boxCell).find(opt.bdCell).children('ul').stop(true,true).hide().removeClass('on'); _this.parents(opt.boxCell).find(opt.bdCell).children('ul').eq(_index).stop(true,true).show(opt.delay,function(){ _this.parents(opt.boxCell).find(opt.bdCell).children('ul').eq(_index).addClass('on'); }); } }); } }, //lhAccordion Accordion:function(a){ var a = a || {}; var opt = $.extend({ boxCell:'.lhAccordion', hdCell:'.hd', bdCell:'.bd', delay:600, trigger:'mouseover' },a) if(this.winWidth<=1024){ opt.trigger='click'; } init(); function init(){ $(opt.boxCell).each(function(){ var _this = $(this); _this.children().eq(0).addClass('on').find(opt.bdCell).stop(true,true).slideDown(); }); accordionShow(); } function accordionShow(){ if(opt.trigger=='click'){ clickShow(); }else{ hoverShow(); } } function hoverShow(){ $(opt.boxCell).find(opt.hdCell).hover(function(){ var _this = $(this).parent(); if(!_this.hasClass('on')){ $(opt.boxCell).children().removeClass('on').find(opt.bdCell).stop(true,true).slideUp(); _this.addClass('on').find(opt.bdCell).stop(true,true).slideDown(); } },function(){}); } function clickShow(){ $(opt.boxCell).find(opt.hdCell).click(function(){ var _this = $(this).parent(); if(_this.hasClass('on')){ _this.removeClass('on').find(opt.bdCell).stop(true,true).slideUp(); }else{ $(opt.boxCell).children().removeClass('on').find(opt.bdCell).stop(true,true).slideUp(); _this.addClass('on').find(opt.bdCell).stop(true,true).slideDown(); } }); } }, //导航 Nav : function(){ this.ReturnTop(); $('.lh-nav li').each(function(){ var _this = $(this); var length = _this.find('.lh-nav-toogle dl').length; if(length>6){ _this.find('.lh-nav-toogle .container').css({'max-width':'90%'}); } }); //视频弹窗 if($('.lh-video-layer').length>0){ $('.lh-video-btn').click(function(){ if($(this).attr('video')){ $('.lh-video-layer video').attr('src',$(this).attr('video')) } $('body').addClass('Video'); $('.lh-video-layer video')[0].play(); }); $('.lh-layer-btn').click(function(){ $('body').removeClass('Video'); $('.lh-video-layer video')[0].pause(); }); $('.lh-video-layer video')[0].onended=function(){ $('body').removeClass('Video'); } } //团队风采 if($('.lh-demeanour-banner').length>0){ var slidesPerView=4; if(this.winWidth<=980){ slidesPerView=2; } this.Banner({boxCell:'.lh-demeanour-banner',effect:'slide',slidesPerView:slidesPerView}) } //发展历程 if($('.lh-course-banner').length>0){ var slidesPerView=5; if(this.winWidth<=980){ slidesPerView=2; } this.Banner({boxCell:'.lh-course-banner',effect:'slide',slidesPerView:slidesPerView}) } //加入我们 查看职位 if($('.lh-joina-banner').length>0){ this.Banner({boxCell:'.lh-joina-banner',effect:'slide',paginationType:'fraction',pagination:'.pa1',nextEl:'.next1',prevEl:'.prev1'}); } if($('.lh-joinar-banner').length>0){ this.Banner({boxCell:'.lh-joinar-banner',effect:'slide',paginationType:'fraction',pagination:'.pa2',nextEl:'.next2',prevEl:'.prev2'}); } //招聘头部 if($('.lh-recruitment-header').length>0){ $('.lh-recruitment-nav-btn').click(function(){ if($(this).hasClass('on')){ $(this).removeClass('on'); $('body').removeClass('recruitment'); }else{ $(this).addClass('on'); $('body').addClass('recruitment'); } }); } //Tab切换 if($('.lhTab').length>0){ this.Tab(); } //手风琴 if($('.lhAccordion').length>0){ this.Accordion({boxCell:'.lhAccordion'}); } //推荐新闻 if($('.lh-recomNews-banner').length>0){ var slidesPerView=3; if(this.winWidth<=980){ slidesPerView=2; } this.Banner({boxCell:'.lh-recomNews-banner',slidesPerView:slidesPerView,effect:'slide',speed:600}); } //成功案例 if($('.lh-caseSuccessful-banner').length>0){ for(var i=1;i<=3;i++){ Public.Banner({boxCell:'.caseSuccessful'+i,effect:'slide',pagination:'.caseSuccessfulBtn'+i}); } $('.lh-caseSuccessful-bd>div').eq(0).show().find('.lh-caseSuccessful-banner').show(); $('.lh-caseSuccessful-hd li').eq(0).addClass('on'); $('.lh-caseSuccessful-hd li').click(function(){ var _this = $(this),_index = _this.index(); _this.addClass('on').siblings().removeClass('on'); $('.lh-caseSuccessful-bd>div').hide(); $('.lh-caseSuccessful-bd>div').eq(_index).show(); }); } //产品/系统解决方案 if($('.lh-solution-banner').length>0){ var slidesPerView=4; if(this.winWidth<=980){ slidesPerView=2; } this.Banner({boxCell:'.lh-solution-banner',slidesPerView:slidesPerView,effect:'slide'}); } //行业解决方案展开收起 if($('.lh-toggle-btn').length>0){ if($('.lh-solutions-item li').length<7){ $('.lh-toggle-btn').css({display:'none'}); $('.lh-solutions-a').css({height:'auto',overflow:'initial'}) }else{ $('.lh-toggle-btn').click(function(){ var _this = $(this); var height = $('.lh-solutions-item li').outerHeight(),length = Math.ceil($('.lh-solutions-item li').length/3); var ulHeight = height*length; if(_this.hasClass('on')){ _this.removeClass('on').children('h2').text('展开更多'); $('.lh-solutions-a').height(313); }else{ _this.addClass('on').children('h2').text('收起'); $('.lh-solutions-a').height(ulHeight); } }); } } //二级栏目 if($('.lh-other-nav').length>0){ if($('.lh-other-nav li').length<=3){ $('.lh-other-nav').addClass('otherNav3'); } if($('.lh-other-nav li').length==4){ $('.lh-other-nav').addClass('otherNav4'); } } //三级栏目 if($('.lh-three-item').length>0){ if($('.lh-three-item li').length>=8){ $('.lh-cursom').css({display:'none'}); } } //二级展开 function totallj(){ var n=0; $('.lh-sidebar-item>li').each(function(){ if($(this).hasClass('on')){ return false; } $('.lh-sidebar-two').each(function(){ if($(this).hasClass('hover')){ return false; } n+=$(this).find('li').size(); }) }) return n; } if(this.winWidth>1024){//电脑版 //seacrh if($('.lh-search-layer').length>0){ $('.lh-search-btn').click(function(){ $('body').addClass('Search'); }); $('.lh-search-close').click(function(){ $('body').removeClass('Search'); }); } //nav $('.lh-nav li').hover(function(){ var _this = $(this); if(_this.find('.lh-nav-toogle').length>0){ _this.addClass('hover'); } },function(){ var _this = $(this); if(_this.find('.lh-nav-toogle').length>0){ _this.removeClass('hover'); } }); //左侧map var cc=true; $('.lh-header-l').hover(function(){ $('.lh-sidebar').addClass('hover'); },function(){ setTimeout(function(){ if(cc){ $('.lh-sidebar').removeClass('hover'); } },100); }); //三级展示 $('.lh-sidebar-item>li').hover(function(){ var _this = $(this),_index = _this.index(); _this.addClass('on').siblings().removeClass('on'); $('.lh-sidebar-a>ul').removeClass('hover'); $('.lh-sidebar-b>ul').removeClass('hover'); if($('.lh-sidebar-a>ul').eq(_index).children().length>0){ $('.lh-sidebar-a>ul').eq(_index).addClass('hover'); } },function(){}); //产品展示 $('.lh-sidebar-two>li').hover(function(){ var _this = $(this),_index = _this.index(); $('.lh-sidebar-two>li').removeClass('on'); _this.addClass('on').siblings().removeClass('on'); _index+=totallj(); $('.lh-sidebar-b>ul').removeClass('hover'); if($('.lh-sidebar-b>ul').eq(_index).children().length>0){ $('.lh-sidebar-b>ul').eq(_index).addClass('hover'); } },function(){}); //移出 $('.lh-sidebar').hover(function(){ cc=false; },function(){ cc=true; $('.lh-sidebar-item>li').removeClass('on'); $('.lh-sidebar-two>li').removeClass('on'); $('.lh-sidebar-b>ul').removeClass('hover'); setTimeout(aa,250); function aa(){ $('.lh-sidebar-a>ul').removeClass('hover'); } setTimeout(bb,500); function bb(){ $('.lh-sidebar').removeClass('hover'); } }); }else{//手机版 $('.lh-header-l').click(function(){ if($(this).hasClass('on')){ $(this).removeClass('on'); $('body').removeClass('webOn'); }else{ $(this).addClass('on'); $('body').addClass('webOn'); } }); $('.lh-sidebar-item li').click(function(){ event.stopPropagation(); var _this=$(this),_index=_this.index(); _this.addClass('on').siblings().removeClass('on'); $('.lh-sidebar-a>ul').removeClass('on'); if($('.lh-sidebar-a>ul').eq(_index).children().length>0){ $('.lh-sidebar-a').addClass('on'); $('.lh-sidebar-a>ul').eq(_index).addClass('on'); } }); function totallj1(){ var n=0; $('.lh-sidebar-item>li').each(function(){ if($(this).hasClass('on')){ return false; } $('.lh-sidebar-two').each(function(){ if($(this).hasClass('on')){ return false; } n+=$(this).find('li').size(); }) }) return n; } $('.lh-sidebar-two li').click(function(){ event.stopPropagation(); var _this=$(this),_index=_this.index(); _index+=totallj1(); $('.lh-sidebar-b>ul').removeClass('on'); if($('.lh-sidebar-b>ul').eq(_index).children().length>0){ $('.lh-sidebar-b').addClass('on'); $('.lh-sidebar-b>ul').eq(_index).addClass('on'); } }); //返回 $('.lh-return').click(function(){ $(this).parent().removeClass('on'); $(this).parent().children('ul').removeClass('on'); }); } //banner if($(".lh-banner").length>0){ this.Banner1({boxCell:'.lh-banner'}); this.Mouse({boxCell:'.lh-banner',boxFun:function(_this,e){ TweenLite.to($('.lh-banner .bg'), 1.5,{x:-e}); }}) } //解决方案 /*if($('.lh-plan-item').length>0 && this.winWidth>1024){ Plan(); $(window).resize(function(e) { Plan(); }); function Plan(){ var winWidth = $(window).width(),length =$('.lh-plan-item li').length; $('.lh-plan-item li').width(Math.ceil(winWidth/length)); $('.lh-plan-item li').hover(function(){ $('.lh-plan-item li').width(Math.ceil(winWidth/length)); $(this).width(370); }); } }*/ //解决方案 if($('.lh-plan-banner').length>0){ var slidesPerView = 6; if($(window).width()<=980){ slidesPerView=2; } this.Banner1({boxCell:'.lh-plan-banner',slidesPerView:slidesPerView,effect:'slide',delay:2000}); } //研究 if($('.lh-research-banner').length>0){ this.Banner({boxCell:'.lh-research-banner',effect:'slide',pagination:'.lh-research-hd',renderBullet: function (index, className) { return '0' + (index + 1) + ''; },}); } }, //阻止默认行为 preventDefault:function(el){ el.addEventListener('touchmove',function(e){ e.preventDefault(); }); }, //效果 Mouse : function(a){ var a = a || {}; var opt = $.extend({ boxCell : '.lhMouse', boxFun : function(_this,e){ } },a); $(opt.boxCell).on('mousemove',function(e){ var pointX = e.pageX; var pointY = e.pageY; var w = $(window).width()/2; var h = $(window).height()/2; var pianyiX = pointX - w ; var pianyiY = pointY - h- $(window).scrollTop(); var jiaodux = (15/w)*pianyiX; var jiaoduy = (15/h)*pianyiY; var _this = $(this); opt.boxFun(_this,jiaodux); }) }, ReturnTop : function(){ $('.lhTop').on('click',function(){ $('html,body').animate({scrollTop:'0px'}); }); }, FixedNav:function(){ var p=0;t=0; $(window).scroll(function(){ p = $(this).scrollTop(); if(t<=p){ $('body').addClass('fixed'); }else{ $('body').removeClass('fixed'); } t=p; }); } } Public.Init();