//滚动插件 (function($){ $.fn.extend({ scroll:function(opt,callback){ //参数初始化 if(!opt) var opt={}; var _this=this.eq(0).find("ul:first"); var lineh=_this.find("li:first").height(), //获取行高 line=opt.line?parseint(opt.line,10):parseint(this.height()/lineh,10), //每次滚动的行数,默认为一屏,即父容器高度 speed=opt.speed?parseint(opt.speed,10):500, //卷动速度,数值越大,速度越慢(毫秒) timer=opt.timer?parseint(opt.timer,10):3000; //滚动的时间间隔(毫秒) if(line==0) line=1; var upheight=0-line*lineh; //滚动函数 scrollup=function(){ _this.animate({ margintop:upheight },speed,function(){ for(i=1;i<=line;i++){ _this.find("li:first").appendto(_this); } _this.css({margintop:0}); }); } //鼠标事件绑定 _this.hover(function(){ clearinterval(timerid); },function(){ timerid=setinterval("scrollup()",timer); }).mouseout(); } }) })(jquery); $(document).ready(function(){ $("#scrolldiv").scroll({line:1,speed:500,timer:3000}); });