欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

新闻上下滚动jquery 超简洁(必看篇)

程序员文章站 2023-11-14 21:23:10
实例如下:
11你好,欢...

实例如下:

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

以上这篇新闻上下滚动jquery 超简洁(必看篇)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。