π‘ Best for storytelling pages, portfolios, or product showcases.
Add Sections in Elementor:
Enable Scroll Navigation:
section-1
, section-2
).Apply Fade-in Animation:
π‘ This works well for story-driven or section-based web pages.
.reveal {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
document.addEventListener("DOMContentLoaded", function() {
let sections = document.querySelectorAll(".reveal");
function revealOnScroll() {
sections.forEach(section => {
let sectionTop = section.getBoundingClientRect().top;
if (sectionTop < window.innerHeight * 0.8) {
section.classList.add("visible");
}
});
}
window.addEventListener("scroll", revealOnScroll);
revealOnScroll();
});
reveal
.π‘ Best for revealing content sections in a smooth transition.
CopyrightΒ© 2025, WP Woman & Faydra D. Fields. All rights reserved.
Site customized by HLWES.