-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7274592
commit 2ad8db0
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.fade-in-hidden { | ||
opacity: 0; /* Hidden by default */ | ||
transition: opacity 4s ease-in; /* Smooth fade-in over 4 seconds */ | ||
} | ||
|
||
.fade-in-visible { | ||
opacity: 1; /* Fully visible */ | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Add this in your JavaScript file (e.g., `assets/js/main.js`) or inline | ||
document.addEventListener("DOMContentLoaded", function () { | ||
const fadeInElement = document.getElementById("fade-in-element"); | ||
|
||
// Add the 'fade-in-visible' class to start the fade-in effect | ||
fadeInElement.classList.add("fade-in-visible"); | ||
}); | ||
|