可以改成这样的试试看。。
修改了。
// 文字滚动列表
var _t = null
function autoScroll(){
$(".scroll").find(".list1").animate({
marginTop : "-28px"
},500,function(){
$(this).css({marginTop : "0px"}).find("li:first").appendTo(this);
})
_t = setTimeout(autoScroll,2800);
$(".scroll").hover(
function(){
clearTimeout(_t);
},
function(){
_t = setTimeout(autoScroll,2800);
}
)
}
$(function(){
autoScroll()
})