基於jquery的無縫平滑滾動插件
(function($){ $.fn.myScroll = function(options){ //默認配置 var defaults = { speed:40, //滾動速度,值越大速度越慢 rowHeight:24 //每行的高度 }; var opts = $.extend({}, defaults, options),intId = []; function marquee(obj, step){ obj.find("ul").animate({ marginTop: '-=1' },0,function(){ var s = Math.abs(parseInt($(this).css("margin-top"))); if(s >= step){ $(this).find("li").slice(0, 1).appendTo($(this)); $(this).css("margin-top", 0); } }); } this.each(function(i){ var sh = opts["rowHeight"],speed = opts["speed"],_this = $(this); intId[i] = setInterval(function(){ if(_this.find("ul").height()<=_this.height()){ clearInterval(intId[i]); }else{ marquee(_this, sh); } }, speed); _this.hover(function(){ clearInterval(intId[i]); },function(){ intId[i] = setInterval(function(){ if(_this.find("ul").height()<=_this.height()){ clearInterval(intId[i]); }else{ marquee(_this, sh); } }, speed); }); }); } })(jQuery);
使用方法
先引入jquery類庫,后初始化插件參數,不設置即為默認值,初始化函數綁定在ul外層div上(需設置寬 / 高並overflow:hidden)
保證ul的寬或高超出外層div才會有效果
$('#scroll').myScroll({ speed:40, //滾動速度,值越大速度越慢 rowHeight:24 //每行的高度 })