9 lines
317 B
JavaScript
9 lines
317 B
JavaScript
// Optional: Add light fade-in effect
|
|
window.addEventListener("DOMContentLoaded", () => {
|
|
document.querySelector(".content").style.opacity = 0;
|
|
setTimeout(() => {
|
|
document.querySelector(".content").style.transition = "opacity 1s ease";
|
|
document.querySelector(".content").style.opacity = 1;
|
|
}, 100);
|
|
});
|