$(document).ready(function(e) { //图片切左右换动画 $(".btnPicPage").bind("click",function(){ var Imgs=$(".intrPic ul li"); //返回切换元素数组 var ImgWidth=$(".intrPic ul li").width(); //返回每个切换元素的宽度 var ThisIndex=(parseInt($(".intrPic ul").css("margin-left")))/ImgWidth; //当前索引值 var NextIndex=$(this).index()==0?ThisIndex+1:ThisIndex-1; //下一索引值 if(NextIndex>0) NextIndex=-Imgs.length+1;//判断尽头 if(NextIndex<-Imgs.length+1) NextIndex=0;//判断尽头 $(".intrPic ul").animate({marginLeft:ImgWidth*NextIndex},300); //图片转动 //导航示图 var Navs=$(".numBar li"); Navs.removeClass("current"); Navs.eq(-NextIndex).addClass("current"); }) });