jQuery实现代码如下: 复制代码 代码如下: <BR>$(function(){<BR> $("#newly").hover(function(){<BR> clearInterval(scrtime);<BR> },function(){<BR> scrtime=setInterval(function(){<BR> $ul=$("#newly ul");<BR> liheight=$ul.find("li:first").height();<BR> $ul.animate({marginTop:"-10px"},1000,function(){<BR> $ul.find("li:first").appendTo("#newly ul");<BR> $ul.find("li:first").hide();<BR> $ul.css("margin-top","0px");<BR> $ul.find("li:first").show();<BR> });<BR> },4200);<BR> }).trigger("mouseleave");<BR>});<BR>