当前位置: 代码迷 >> Web前端 >> jquery兑现多行滚动效果
  详细解决方案

jquery兑现多行滚动效果

热度:66   发布时间:2012-11-06 14:07:00.0
jquery实现多行滚动效果
有时jquery博客想,整那么多demo有什么用呢?
有些前端新手朋友不会,为他们服务吧。还有喜欢自己留点字迹,也好方便自己回过头看看。
温故而知新嘛。
前端需要那么多js特效,当然jquery博客水平有限,只能分享一些基本常见的。高手们勿拍砖哦。
今儿分享一个jquery实现多行滚动效果。
我看一些论坛网站上面,公告处用的较多。
// 多行滚动
(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):1000, //卷动速度,数值越大,速度越慢(毫秒)
timer=opt.timer?parseInt(opt.timer,10):5000; //滚动的时间间隔(毫秒)
if(line==0) line=1;
var upHeight=0-line*lineH;
scrollUp=function(){
_this.animate({
marginTop:upHeight
},speed,function(){
for(i=1;i
在线效果DEMO


jQuery http://www.jqueryba.com/415html
  相关解决方案