Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使文本滑块在其中移动..
起初它会显示一些文本,一段时间后它可能会显示一些其他文本。如何使用 jQuery 和 CSS 做到这一点?
我知道这个问题将被关闭(我已投票关闭自己)。但是为了让你开始,尝试使用这样的东西..
setInterval(function(){ $('#slider').html(new Date()); },1000);
把它放进去
setTimeout(function(){ //Your code here },10000);