我如何才能使卷轴nap型与React正确使用?

发布于 2025-01-19 09:50:27 字数 845 浏览 0 评论 0原文

我有一个反应应用程序,如下所示:

function App() {
  return (
    <div className="app">
      <Topbar/>
      <div className="sections">
        <Intro/>
        <Portfolio/>
        <Works/>
        <Contact/>
      </div>
    </div>
  );
}

4 个部分的组件有一个 css 文件,如下所示:

.intro{
    background-color: rgb(243, 208, 208);
    width: 100vw;
    height: calc(100vh - 70px);
    scroll-snap-align: start;
}

app.js css 文件如下所示:

.app{
    height: 100vh;

    .sections{
        width: 100%;
        height: calc(100vh-70px);
        background-color: rgb(105, 179, 130);
        position: relative;
        top: 70px;
        scroll-snap-type: y mandatory;
    }
}

本质上每个组件都是一个全尺寸的页面,其想法是进行快速滚动。有谁知道为什么我似乎无法让它工作?谢谢!

I have a react app as follows:

function App() {
  return (
    <div className="app">
      <Topbar/>
      <div className="sections">
        <Intro/>
        <Portfolio/>
        <Works/>
        <Contact/>
      </div>
    </div>
  );
}

The 4 sections components have a css file as so:

.intro{
    background-color: rgb(243, 208, 208);
    width: 100vw;
    height: calc(100vh - 70px);
    scroll-snap-align: start;
}

And the app.js css file looks like so:

.app{
    height: 100vh;

    .sections{
        width: 100%;
        height: calc(100vh-70px);
        background-color: rgb(105, 179, 130);
        position: relative;
        top: 70px;
        scroll-snap-type: y mandatory;
    }
}

Essentially every components is a full sized page, and the idea is to have snap scrolling. Does anyone know why I can't seem to get it to work? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文