11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
|
const text = "She Is My Queen I Love Her Eyes So Much 🤍 ";
|
||
|
let index = 0;
|
||
|
|
||
|
function writeText() {
|
||
|
document.body.innerText = text.slice(0, index);
|
||
|
index++;
|
||
|
if (index > text.length) {
|
||
|
index = 0;
|
||
|
}
|
||
|
}
|
||
|
setInterval(writeText, 100);
|