到目前为止,这是我的代码,
function richardsSuperAmazingVerticalTextScroller(){
$('#honor-roll ul').animate(
{
top: '-=' + $('#honor-roll ul li:last').height()
},
1000,
'linear',
function(){
var offset = $('#honor-roll ul li:last').offset().top;
console.log(offset);
if( offset <= 640){
$('#honor-roll ul li').css("margin", 0);
$('#honor-roll ul li:last').after($('#honor-roll ul li:first').detach());
}
}
);
}
$(document).ready(function(){
setInterval('richardsSuperAmazingVerticalTextScroller()',1000)
});
在 jsFiddle 上它工作得很好,但在这个版本中它失败了,http: //barkins.com/test.html
这是 Fiddle 上的相同代码,http://jsfiddle.net/qmFD3/6/
谁能发现问题?谢谢