当前位置: 编程技术>jquery
jquery 文字上下滚动效果的代码
来源: 互联网 发布时间:2014-10-04
本文导语: jquery实现文字上下滚动的效果,如下图: 完整代码: 代码示例: jQuery插件版文字轮流滚动_http://www. function scroll_news(){ $(function(){ $('#dvmq li').eq(0).fadeOut('slow',function(){ // alert($(this).clone().html());...
jquery实现文字上下滚动的效果,如下图:
完整代码:
代码示例:
jQuery插件版文字轮流滚动_http://www.
function scroll_news(){
$(function(){
$('#dvmq li').eq(0).fadeOut('slow',function(){
// alert($(this).clone().html());
//克隆:不用克隆的话,remove()就没了。
$(this).clone().appendTo($(this).parent()).fadeIn('slow');
$(this).remove();
});
});
}
setInterval('scroll_news()',1000);
- 1,one
- 2,two
- 3,three
- 4,我走一步,停一停!