// Swipe Animation document.addEventListener("DOMContentLoaded", function () { const iconWrapper = document.querySelector(".d-single-form--gallery__icon-wrapper"); const contentWrapper = document.querySelector(".d-single-form--content-wrapper"); let animationStarted = false; function checkVisibility() { if (!animationStarted && contentWrapper.getBoundingClientRect().top < window.innerHeight) { animationStarted = true; iconWrapper.classList.add("show"); // Hide icon after 3 seconds setTimeout(() => { iconWrapper.classList.add("hide"); }, 3000); } } window.addEventListener("scroll", checkVisibility); checkVisibility(); });
Skip to main content