π‘ Best for hero sections, slogans, or feature descriptions.
Add the Animated Text Widget (JetElements):
Select an Animation Style:
Add Scroll Navigation & Sync Sections:
π‘ Ideal for headers, branding messages, and storytelling sections.
.reveal-text {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-text.visible {
opacity: 1;
transform: translateY(0);
}
document.addEventListener("DOMContentLoaded", function() {
let texts = document.querySelectorAll(".reveal-text");
function revealTextOnScroll() {
texts.forEach(text => {
let textTop = text.getBoundingClientRect().top;
if (textTop < window.innerHeight * 0.85) {
text.classList.add("visible");
}
});
}
window.addEventListener("scroll", revealTextOnScroll);
revealTextOnScroll();
});
reveal-text
.π‘ Perfect for animated headlines and hero text effects.
CopyrightΒ© 2025, WP Woman & Faydra D. Fields. All rights reserved.
Site customized by HLWES.