当前位置: 编程技术>WEB前端
jquery垂直公告滚动实现代码
来源: 互联网 发布时间:2014-08-25
本文导语: 代码如下: 无标题文档 *{ padding:0px; margin:0px; } ul{ list-style:none; } li{ line-height:30px; } 1111 22222 3333 44444 5555 66666 setInterval(function(){ var newList=$('ul :first').clone(true); $('ul').append(newList); $('ul :first').remove(); },2000);
代码如下:
无标题文档
*{
padding:0px;
margin:0px;
}
ul{
list-style:none;
}
li{
line-height:30px;
}
- 1111
- 22222
- 3333
- 44444
- 5555
- 66666
setInterval(function(){
var newList=$('ul :first').clone(true);
$('ul').append(newList);
$('ul :first').remove();
},2000);