13 lines
380 B
JavaScript
13 lines
380 B
JavaScript
document.addEventListener("DOMContentLoaded", function() {
|
|
const lines = document.querySelectorAll(".typing-effect");
|
|
|
|
lines.forEach((line, index) => {
|
|
line.style.animationDelay = `${index * 2.7}s`;
|
|
line.style.opacity = '1';
|
|
|
|
line.addEventListener("animationend", function() {
|
|
line.classList.add("typing-finished");
|
|
});
|
|
});
|
|
});
|
|
|