JS 部分
$ (function (){
var $this = $(".renav");
varscrollTimer;
$this.hover(function(){
clearInterval(scrollTimer);
} ,function (){
scrollTimer = setInterval(function(){
scrollNews( $this );
}, 2000 )
}).trigger("mouseout"); );
functionscrollNews(obj){
var $self = obj.find("ul:first");
var lineHeight = $self.find("li:first").height() ;
$self.animate({ "margin-top" : -lineHeight "px" },600 , function(){
$self.css({"margin-top":"0px"}) find( "li:first").appendTo($self);
})
}
HTML 部分