// ScrollSmoother.create({ // content: ".lonyo-smooth-scroll", // smooth: 1 // }); // const body = document.body, // jsScroll = document.getElementsByClassName("lonyo-smooth-scroll")[0], // height = jsScroll.getBoundingClientRect().height - 1, // speed = 0.05; // var offset = 0; // body.style.height = Math.floor(height) + "px"; // function smoothScroll() { // offset += (window.pageYOffset - offset) * speed; // var scroll = "translateY(-" + offset + "px) translateZ(0)"; // jsScroll.style.transform = scroll; // raf = requestAnimationFrame(smoothScroll); // } // smoothScroll();