Den*_*syn 3 javascript reactjs next.js locomotive-scroll
我正在使用locomotive-scrollNext.js,一切正常。但在路由到不同的页面后,我的卷轴不会破坏,并且 2 个卷轴相互重叠。
如何locomotive-scroll在路由后正确地重新初始化 Next.js?
我的代码示例:
function MyApp({ Component, pageProps }) {
useEffect(() => {
import("locomotive-scroll").then((locomotiveModule) => {
let scroll = new locomotiveModule.default({
el: document.querySelector("[data-scroll-container]"),
smooth: true,
smoothMobile: false,
resetNativeScroll: true,
});
scroll.destroy(); //<-- DOESN'T WORK OR IDK
setTimeout(function () {
scroll.init();
}, 400);
});
});
return (
<main data-scroll-container>
<Component {...pageProps} />
</main>
);
}
Run Code Online (Sandbox Code Playgroud)
您应该将scroll.destroy调用移至useEffect. 您也不需要显式调用scroll.init().
function MyApp({ Component, pageProps }) {
useEffect(() => {
let scroll;
import("locomotive-scroll").then((locomotiveModule) => {
scroll = new locomotiveModule.default({
el: document.querySelector("[data-scroll-container]"),
smooth: true,
smoothMobile: false,
resetNativeScroll: true
});
});
// `useEffect`'s cleanup phase
return () => {
if (scroll) scroll.destroy();
}
});
return (
<main className="main" data-scroll-container>
<Layout>
<Component {...pageProps} />
</Layout>
</main>
);
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6803 次 |
| 最近记录: |