$(function(){ $('.topIcon li').hover(function(){ $(this).find('.main').stop().slideToggle(); }); /*鼠标移过,左右按钮显示*/ jQuery(".banner").hover(function () { $(".banner .prev").stop(true, true).animate({ left: '-120px', opacity: '1' }) $(".banner .next").stop(true, true).animate({ right: '-1400px', opacity: '1' }) }, function () { $(".banner .prev").stop(true, true).animate({ left: '-140px', opacity: '0' }) $(".banner .next").stop(true, true).animate({ right: '-1450px', opacity: '0' }) }); /*SuperSlide图片切换*/ jQuery(".banner").slide({titCell:".hd li",mainCell:".bd ul", effect:"fold",autoPlay:true,easing:"easeOutCirc",interTime:6000,delayTime:1500}); /*导航 */ jQuery(".nav").slide({type:"menu", titCell:".m", targetCell:".navSub",effect:"slideDown",delayTime:300, triggerTime:0, returnDefault:true,defaultPlay:false}); jQuery(".case").slide({ titCell:".caseMenu a", mainCell:".caseMain",delayTime:600,prevCell:false,nextCell:false}); jQuery(".adv").slide({ titCell:".advMenu li", mainCell:".advMain",effect:"fold",autoPlay:true,delayTime:1400,interTime:6000, endFun:function(i,c){ jQuery(".advMain .txt").css({"marginLeft":340,"opacity":0}).eq(i).animate({"marginLeft":230,"opacity":1}); } }); jQuery(".news").slide({ titCell:".newsMenu a", mainCell:".newsMain",delayTime:600,prevCell:false,nextCell:false}); jQuery(".faqMain").slide({mainCell:"ul",autoPlay:true,effect:"topMarquee",vis:3,interTime:50}); jQuery(".honorSlide").slide({ mainCell:".ohbox ul",autoPage:true,effect:"leftLoop",autoPlay:true,scroll:1,vis:5,interTime:4500}); jQuery(".settingL").slide({titCell:".hd ul",mainCell:".bd",autoPage:true,effect:"fade",autoPlay:true,vis:1}); jQuery(".caseSlide").slide({titCell:".hd ul",mainCell:".bd",autoPage:true,effect:"fade",autoPlay:true,vis:1}); }); /* 客服 */ $(document).ready(function(){ $(".gr_kefu .kf1").click(function(){ $('.gr_kefu .qq').find(".sidebox").stop().animate({"right":"0"},160); $(this).find(".sidebox").stop().animate({"right":"-50px"},160); }); $(".gr_kefu .qq .close").click(function(){ $('.gr_kefu .qq').find(".sidebox").stop().animate({"right":"-150px"},160); $('.gr_kefu .kf1').find(".sidebox").stop().animate({"right":"0"},160); }); $(".gr_kefu .kf3").hover(function(){ $(this).find(".sidebox").stop().animate({"width":"130px"},160); $(this).find(".sidebox3").stop().animate({"width":"200px"},160); },function(){ $(this).find(".sidebox").stop().animate({"width":"50px"},160); }); $('.gr_kefu .kf2').hover(function() { $(this).find('.kf_wx').fadeIn(); }, function() { $(this).find('.kf_wx').fadeOut(); }); $(window).scroll(function(){ if($(this).scrollTop()>40){ $(".header").addClass("headFix"); } else{ $(".header").removeClass("headFix"); } }); }); //回到顶部 function goTop(){ $('html,body').animate({'scrollTop':0},600); }