Files
destruction-of-legacy/text_horror/app.js
2023-05-26 11:04:36 +02:00

11 lines
233 B
JavaScript

var i = 0;
var txt = 'Hello welcome to TextHorror!';
var speed = 50;
function typeWriter() {
if (i < txt.length) {
document.getElementById("bubble").innerHTML += txt.charAt(i);
i++;
setTimeout(typeWriter, speed);
}
}