react-fullpage.js - 如何在特定部分加载网站,而不是第一部分?

react-fullpage.js - How to load website on a certain section, as opposed to the first section?

问题: 我希望网站加载到第 3 部分,而不是第 1 部分。然后用户将向上滚动到内容,而不是向下滚动。我基本上想颠倒网站的常规顺序。

<div className="section">
<h3>Section 3</h3>
</div>

盖茨比(反应),@fullpage/react-fullpage

https://codesandbox.io/s/m34yq5q0qx

您可以使用 active class 设置初始部分:https://codesandbox.io/s/react-fullpagejs-example-b618h


  <div className="section active">
    <h3>Section 3</h3>
    <button onClick={() => fullpageApi.moveTo(1, 0)}>
      Move top
    </button>
  </div>

https://github.com/alvarotrigo/react-fullpage/issues/168