💡 Best for marketing campaigns, product launches, or event promotions.
Add a Video Widget:
Enable Scroll-triggered Fade-in:
Lazy Load Video for Performance:
Link with Scroll Navigation:
💡 Best for promotional videos, explainer content, and engaging intros.
.video-section {
opacity: 0;
transition: opacity 1s ease-out;
}
.video-section.visible {
opacity: 1;
}
document.addEventListener("DOMContentLoaded", function() {
let videos = document.querySelectorAll(".video-section");
function videoOnScroll() {
videos.forEach(video => {
let videoTop = video.getBoundingClientRect().top;
if (videoTop < window.innerHeight * 0.8) {
video.classList.add("visible");
}
});
}
window.addEventListener("scroll", videoOnScroll);
videoOnScroll();
});
video-section
.💡 Best for promotional content or hero videos.
Copyright© 2025, WP Woman & Faydra D. Fields. All rights reserved.
Site customized by HLWES.