// ✅ Load external scripts dynamically
function loadScript(src, callback) {
const script = document.createElement("script");
script.src = src;
script.async = true;
script.onload = callback;
document.head.appendChild(script);
}
// ✅ Load AOS (Animate On Scroll) first
loadScript("https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js", () => {
AOS.init({
duration: 1000,
once: true, // Animates only once
});
});
// ✅ Load Swiper after AOS is loaded
loadScript("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js", () => {
// ✅ Initialize Swiper
const swiper = new Swiper(".mySwiper", {
effect: "coverflow",
grabCursor: true,
centeredSlides: true,
slidesPerView: 1, // default, overridden by breakpoints
loop: true,
coverflowEffect: {
rotate: 50,
stretch: 0,
depth: 100,
modifier: 1,
slideShadows: false,
},
pagination: {
el: ".swiper-pagination",
},
autoplay: {
delay: 2500,
disableOnInteraction: false,
},
breakpoints: {
576: {
slidesPerView: 2,
},
768: {
slidesPerView: 3,
},
992: {
slidesPerView: 3,
},
1200: {
slidesPerView: 4,
},
},
});
});
Stephood Landing
THE STEPHOOD
PROJECT
Lisa’s mission is to support
parents navigating alienation, trauma, and emotional healing. love
A social awareness campaign against parental alienation, empowering both survivors and co-parents
Frequently Asked
Questions
The app aims to empower survivors and co-parents by raising awareness about parental alienation.
Download the app, create an account, and follow the onboarding steps to begin.
No prior experience is needed. The app is designed for everyone.
Regular use is recommended to get the most out of the app's features.
The app provides general guidance, but always consult a professional for critical decisions.
The app uses AI to assist, but it does not replace professional advice.