当前位置: 首页 > 工具软件 > jQuery GoUp! > 使用案例 >

新闻上下滚动jquery 超简洁

那宏大
2023-12-01
<div class = "box">
	<dl class="textlist">
		<dd>11黄金卡号房间看的撒恢复健康四大行</dd>
		<dd>22黄金卡号房间看的撒恢复健康四大行</dd>
		<dd>33黄金卡号房间看的撒恢复健康四大行</dd>
		<dd>44黄金卡号房间看的撒恢复健康四大行</dd>
		<dd>55黄金卡号房间看的撒恢复健康四大行</dd>
	</dl>
</div>
<script>
		$(function(){
			function GoUp(){
				$(".textlist").animate({top,-30},500,function(){
					$(".textlist").css({top,0});
					$(".textlist dd:first").insertAfter(".textlist dd:last")
				});
			}
			setInterval(GoUp,1000)
		
		})

	</script>
</body>

 类似资料: