This commit is contained in:
2025-02-25 20:59:11 +08:00
parent 46d9f195b1
commit 0263d8a436
8 changed files with 99 additions and 40 deletions

View File

@@ -45,7 +45,7 @@
paragraphs[index].classList.add("show");
index = (index + 1) % paragraphs.length; // Loop back to the first paragraph
setTimeout(showNextParagraph, 3500); // Change paragraph every 3 seconds
setTimeout(showNextParagraph, 4000); // Change paragraph every 4 seconds
}
showNextParagraph();