如何在其中移动文本滑块..
在第一时间,它会显示一些文字,一段时间后它可能会显示其他文字。我怎么能用jQuery和CSS做到这一点?
答案 0 :(得分:1)
我知道这个问题将被关闭(我已经投票结束了自己)。但是为了让你开始,尝试使用这样的东西..
setInterval(function(){
$('#slider').html(new Date());
},1000);
答案 1 :(得分:0)
把它放在
中setTimeout(function(){
//Your code here
},10000);