function commonJs(){ const lenis = new Lenis({ // 추가된 부분 duration: 2, easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)), }); function raf(time) { lenis.raf(time); requestAnimationFrame(raf); } requestAnimationFrame(raf); AOS.init({ // offset: 300, duration:800, easing: 'ease', once: true, }); }