如何在 Using Fullpage JS 部分创建自己的 link

How to create own link on section Using Fullpage JS

我知道那个话题 -- fullpage.js how to create slide anchors and scroll to them?

但我需要为部分创建锚点。

这是我的 page

每个部分底部的滚动按钮应该滚动到下一个部分,但我不明白如何让它工作。

说明in the documentation and you even have examples of it available.

您现在正在初始化 fullPage.js 没有锚点选项,事实上,没有任何单一选项:

$('#wrap').fullpage();

只需按照文档中的详细说明添加锚点选项,例如:

 $('#wrap').fullpage({
      anchors: ['first', 'second', 'third']
 });