Posted in Javascript onNovember 13, 2013
jQuery实现代码如下:
<script type="text/javascript"> $(function(){ $("#newly").hover(function(){ clearInterval(scrtime); },function(){ scrtime=setInterval(function(){ $ul=$("#newly ul"); liheight=$ul.find("li:first").height(); $ul.animate({marginTop:"-10px"},1000,function(){ $ul.find("li:first").appendTo("#newly ul"); $ul.find("li:first").hide(); $ul.css("margin-top","0px"); $ul.find("li:first").show(); }); },4200); }).trigger("mouseleave"); }); </script>
JQuery文字列表向上滚动的代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@