$(function() { //导航动画 $(window).scroll(function() { var st = 0; st = $(window).scrolltop(); if(st < 1) { $(".top").removeclass('on'); } else { $(".top").addclass('on'); }; }); $('.navbar li').hover(function() { var leftp = $(this).position(); $('.scroll-nav').stop().animate({ 'left': leftp.left + 30 }, 300); }, function() { $('.scroll-nav').stop().animate({ 'left': '30px' }, 300); }); $('.searchbtn').click(function() { $('.sousuo').toggleclass('on') }) jquery(".newstip").slide({titcell:".hd ul",maincell:".bd ul",autopage:true,effect:"toploop",autoplay:true}); //大图切换 jquery(".index-sec1").slide({ titcell:".smallimg li", maincell:".bigimg", effect:"fold", autoplay:true,delaytime:200}); //小图左滚动切换 jquery(".index-sec1 .smallscroll").slide({ maincell:"ul",delaytime:100,vis:5,effect:"left",autopage:true,prevcell:".sprev",nextcell:".snext" }); jquery(".index-sec3").slide({titcell:".hd ul",maincell:".bd ul",autopage:true,effect:"leftloop",autoplay:true,vis:2}); $(".menutitle3").click(function(){ $(this).next("div").slidetoggle("slow") .siblings(".menucontent3:visible").slideup("slow"); $(this).toggleclass("activetitle3"); $(this).siblings(".activetitle3").removeclass("activetitle3"); }); jquery(".about-sec4").slide({titcell:".hd ul",maincell:".bd ul",autopage:true,effect:"leftloop",autoplay:true,vis:3}); })