Change typing delay
All checks were successful
Deploy / deploy (push) Successful in 11s

This commit is contained in:
elijah 2024-11-04 01:51:56 +01:00
parent 0210238b02
commit 5e43f076c3

View File

@ -14,7 +14,7 @@ function writeoutnavlabel() {
if (i < text.length) {
label.textContent += text.charAt(i);
i++;
setTimeout(type, 100);
setTimeout(type, 180);
}
}
// why am i using a function inside a function?