$(function(){ $('.nav-btn').click(function(){ $(this).hide(); $('.nav-layout').animate({ left:0, }); }); $('.nav-close').click(function(){ $('.nav-layout').animate({ left:-270, },function(){ $('.nav-btn').show(); }); }); $('.nav-layout').css('height',$(document).outerheight(true)-61); $('.nav-bg').css('height',$(document).outerheight(true)-61); $('.nav-layout ul').find('li').hover(function(){ var _this=$(this).index(); if($(this).find('i').length>0){ $('.nav-layout .nav-btn').stop().animate({ right:-230, },300); if ($(window).outerwidth(true)<=1000) { $('.nav-layout .nav-bg').stop().animate({ width:140, },300,function(){ $('.nav-layout ul li').find('dl').stop().css('display','none'); $('.nav-layout ul li').eq(_this).stop().find('dl').css('display','block'); }); }else{ $('.nav-layout .nav-bg').stop().animate({ width:180, },300,function(){ $('.nav-layout ul li').find('dl').stop().css('display','none'); $('.nav-layout ul li').eq(_this).stop().find('dl').css('display','block'); }); }; }else{ $('.nav-layout ul li').find('dl').stop().css('display','none'); $('.nav-layout .nav-btn').stop().animate({ right:-50, },300); $('.nav-layout .nav-bg').stop().animate({ width:0, },300); } },function(){ $('.nav-layout ul li').find('dl').stop().css('display','none'); $('.nav-layout .nav-btn').stop().animate({ right:-50, }); $('.nav-layout .nav-bg').stop().animate({ width:0, }); }); $(window).resize(function(){ $('.nav-layout').css('height',$(document).outerheight(true)-61); $('.nav-bg').css('height',$(document).outerheight(true)-61); }); $('.gh').toggle(function(){ $('.nav-layout').animate({ left:0, }); },function(){ $('.nav-layout').animate({ left:-270, },function(){ $('.nav-layout ul').find('li').removeclass('hover'); }); }); if($(window).outerwidth(true)<=1200){ $('.footer').hide(); $('.b-foot').show(); $($('.footer').html()).appendto($('.b-foot')); }; $('.left-header .h-right .other-a').toggle(function(){ $(this).next('.all-a').show(); },function(){ $(this).next('.all-a').hide(); }); $('.index-header .right-header .other-search-btn').toggle(function(){ $(this).next('.other-search').show(); },function(){ $(this).next('.other-search').hide(); }); //创新板块 $('.cxbk-con ul:nth-child(2n)').css('margin-right','0'); //食用油 $('.con-list dl dd').find('.l-a').toggle(function(){ var _this=$(this).parent().parent().index(); var nr = $('.con-list dl dd').eq(_this).find('.l-p') nr.css('height','auto'); $(this).html('收起内容'); },function(){ var _this=$(this).parent().parent().index(); var nr = $('.con-list dl dd').eq(_this).find('.l-p') nr.css('height','75'); $(this).html('展开全部'); }); //荣誉 $('.glory-tab ul').css('width',$('.glory-tab ul li').outerwidth(true)*$('.glory-tab ul li').size()); $('.glory-con ul li:nth-child(4n)').css('margin-right','0'); $('.glory-con ul li:nth-child(4n)').css('margin-left','0'); //联系我们 $('.lianxi-con .ul-list').find('li').hover(function(){ $(this).addclass('on').siblings().removeclass('on'); $('.lianxi-con .tab-con ').find('.dl-con').eq($(this).index()).addclass('on').siblings().removeclass('on'); }); //生产基地 $('.map-posi .ul-coor li').hover(function(){ $(this).addclass('hover').siblings().removeclass('hover'); $('.map-con .zs').eq($(this).index()).addclass('hover').siblings().removeclass('hover'); }); //员工关爱 function scroll(){ $(".ga-con .g-c02 ul").animate({"margin-left":"-295px"},function(){ $(".ga-con .g-c02 ul li:eq(0)").appendto($(".ga-con .g-c02 ul")) $(".ga-con .g-c02 ul").css({"margin-left":0}) }) } var timer=setinterval(scroll,2000); $(".ga-con .g-c02").hover(function(){ clearinterval(timer); },function(){ clearinterval(timer); timer=setinterval(scroll,2000); }); //渤海团队 $('.dszfc .dsz-ul li').hover(function(){ $(this).addclass('on').siblings().removeclass('on'); $('.dszfc .dsz-con').eq($(this).index()).addclass('on').siblings().removeclass('on'); }); //历史 var qt_con=$('.his-top .h-ul-con'); var qli=$('.his-top .h-ul-con ul li'); var qul=$('.his-top .h-ul-con ul'); qt_con.css('width',$('.bh-his .his-top').width()-107); qul.css('width',qli.width()*qli.size()); var sp=2; var otimer=null; $('.his-top .h-r-btn').hover(function(){ var ispeed=sp; otimer=setinterval(function(){ if(qul.position().left<=-(parseint(qul.css('width'))-parseint(qt_con.css('width')))){ clearinterval(otimer); }else{ qul.css('left',qul.position().left-ispeed); } },30); },function(){ clearinterval(otimer); }); $('.his-top .h-l-btn').hover(function(){ var ispeed=-sp; otimer=setinterval(function(){ if(qul.position().left>=0){ clearinterval(otimer); }else{ qul.css('left',qul.position().left-ispeed); } },30); },function(){ clearinterval(otimer); }); //历史tab qli.hover(function(){ $(this).addclass('on').siblings().removeclass('on'); $('.his-con').eq($(this).index()).addclass('on').siblings().removeclass('on'); }) });