标签:time png 清除 str sele rip .com es2017 timer
---------------------> -------------------->
.myDiv{height:200px;overflow:hidden;} li{height:50px;line-height:50px;} <div class="myDiv"> <ul> <li>000</li> <li>111</li> <li>222</li> <li>333</li> <li>444</li> <li> . . . </li> </ul> </div> <script> var myDiv=$(".myDiv"); var countDown=1000; var timer; myDiv.hover(function(){ clearInterval(timer); },function(){ timer=setInterval(function(){ var first=myDiv.find("li:first"); var lineHeight=first.height(); first.animate({marginTop:-lineHeight+"px"},500,function(){ first.appendTo("ul").css({marginTop:0}); }) },countDown) }).trigger("mouseleave");//页面载入默认执行 </script>
标签:time png 清除 str sele rip .com es2017 timer
原文地址:http://www.cnblogs.com/mudeng-007/p/7994461.html