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.
我看过一些教程,看起来像是有人在打字来显示课程。
我不记得我在哪里看到过它,但是 JavaScript 片段会是什么?
我确信它将基于一个简单的 setInterval 方法,但我想我会问你,以防你知道一个非常好的方法。
这就是你想要的?!您的 html 中需要一个 id 为“typeText”的 DIV。
var theText = "myText", progress = 0, speed = 250; window.setInterval(function(){ document.getElementById("typeText").innerHTML = theText.substring(0, progress); progress++; }, speed);