亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

JQuery文字列表向上滾動(dòng)的代碼

 更新時(shí)間:2013年11月13日 15:15:53   作者:  
JQuery實(shí)現(xiàn)的文字列表一條一條向上滾動(dòng)的效果

jQuery實(shí)現(xiàn)代碼如下:

復(fù)制代碼 代碼如下:

<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>

相關(guān)文章

最新評(píng)論