$(document).ready(function(){ /*代码整理:97站长网 - www.97zzw.com*/ var totwidth=0; var positions = new array(); $('#slides .slide').each(function(i){ positions[i]= totwidth; totwidth += $(this).width(); if(!$(this).width()) { alert("please, fill in width & height for all your images!"); return false; } }); $('#slides').width(totwidth); $('#dots ul li a').mouseover(function(e,keepscroll){ $('li.menuitem').removeclass('act').addclass('inact'); $(this).parent().addclass('act'); var pos = $(this).parent().prevall('.menuitem').length; $('#slides').stop().animate({marginleft:-positions[pos]+'px'},450); e.preventdefault(); if(!keepscroll) clearinterval(itvl); }); $('#dots ul li.menuitem:first').addclass('act').siblings().addclass('inact'); var current=1; function autoadvance() { if(current==-1) return false; $('#dots ul li a').eq(current%$('#dots ul li a').length).trigger('mouseover',[true]); current++; } var changeevery = 7; var itvl = setinterval(function(){autoadvance()},changeevery*200);//设置自动播放时间,越大越慢 }); /*代码整理:97站长网 - www.97zzw.com*/