// mobile const isTouch = window.matchMedia("(max-width: 991px)").matches; if (isTouch) { $(".navbar-trigger").on("click", function () { $(this).toggleClass("navbar-closed"); $(".navbar-logo-link").toggleClass("navbar-open"); $("body").toggleClass("no-scroll"); }); } // LOGO let tl = gsap.timeline({ paused: true }); tl.to(".stag", { yPercent: 105, stagger: 0.06, duration: 0.18, easing: "expo.out" }); tl.to("#w-2", { x: -363, duration: 0.24, easing: "expo.out" }); tl.to( "#plus", { transformOrigin: "center", x: -680, duration: 0.24, rotationZ: 360, easing: "expo.out" }, "<" ); window.addEventListener("scroll", function () { if (window.scrollY > 5) { tl.play(); } else { tl.reverse(); } });