使用jQuery实现单行文字间歇向上滚动 效果网址:http://www.keleyi.com/keleyi/phtml/textscroll.htm 本效果加强版:http://www.keleyi.com/a/bjac/532bedbffca1affa.htm 主要增加了光标悬停效果 以下是源代码: 复制代码 代码如下: <BR>.scrollDiv{height:25px;/* 必要元素 */line-height:25px;border:#ccc 1px solid;overflow:hidden;/* 必要元素 */} <BR>.scrollDiv li{height:25px;padding-left:10px;} <BR>ul,li{list-style-type:none;margin:0px;} jquery特效 单行文字向上滚动(有间歇) 菜单滚动至顶部后固定 jquery使用ColorBox弹出图片组浏览层 jquery右下角滑动弹出可关闭重现层 jquery清空textarea等输入框 <BR>function AutoScroll(obj){ <BR>$(obj).find("ul:first").animate({ <BR>marginTop:"-25px" <BR>},500,function(){ <BR>$(this).css({marginTop:"0px"}).find("li:first").appendTo(this); <BR>}); <BR>} <BR>$(document).ready(function(){ <BR>setInterval('AutoScroll("#scrollDiv_keleyi_com")',3000); <BR>}); <BR> 解析:使用$('li')将匹配到的是多个li元素的集合。 如果要指定获取第一个li元素,那么可以使用“:first”,即$('li:first');