gpt4 book ai didi

next.js - 如何让 react-joyride 在 Next.js 应用程序中工作?

转载 作者:行者123 更新时间:2023-12-05 02:11:18 28 4
gpt4 key购买 nike

我需要在使用 Next.js 的应用程序中进行多个导览我尝试在父组件中使用 react-joyride 来显示导览。

它显示一秒钟,然后向下滚动到某个地方(即使我滚动到底部也看不到)。

我尝试了一些修复,例如:body { 最小高度:100%; 但是还是不行。

这是步骤配置:

steps: [
{
target: document.getElementById('step-1'),
content: 'This is my awesome feature!',
title: 'This is my awesome feature!',
// isFixed: true
disableBeacon: true
},
{
target: document.getElementById('step-2'),
content: 'This another awesome feature!',
title: 'This another awesome feature!',
// isFixed: true
disableBeacon: true
},
{
target: document.getElementById('step-3'),
content: 'This another awesome feature 3!',
title: 'This another awesome feature 3!',
// isFixed: true,
disableBeacon: true
}
]

而且,这就是我在组件中的调用方式:

  <Joyride
run={showTour}
steps={steps}
debug
showProgress
disableScrolling={false}
disableScrollParentFix
showSkipButton
continuous
/>

最佳答案

对于那些使用 Joyride 和 Next.js 时出现 can't render div inside a div 错误的人——我通过非服务器端渲染 Joyride 解决了这个问题:

import dynamic from 'next/dynamic'

const JoyRideNoSSR = dynamic(
() => import('react-joyride'),
{ ssr: false }
)

const ExampleComponent = (props) => {
return (
<>
<JoyrideNoSSR
steps={[{ target: '#first-step', content: 'Click it bud' }]}
/>
<button id="first-step">
Click me
</button>
</>
)
}

关于next.js - 如何让 react-joyride 在 Next.js 应用程序中工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57685340/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com