fullPage.js 一页滚动 - 在最后一节之后无法滚动到页脚

fullPage.js One Page Scroll - can't scroll to footer after the last section

我正在尝试使用插件 fullPage.js (http://alvarotrigo.com/fullPage/)。 但是我有一些问题。

当我逐节滑动时它工作正常,但当我到达最后一节并尝试滚动到页脚时,它卡住了。我只有在使用滚动条时才能到达页脚。

也许,有一种方法可以通过滚动到达页脚?

非常感谢!

我的代码结构:

<body>
 <content>
  <section>1</section>
  <section>2</section>
  <section>3</section>
  ...
  </content>
 <footer>
  footer is here
 </footer>
</body>

没有看到你的代码,我不确定我能帮上什么忙,但我可以给你一些东西让你自己尝试。

首先:您希望页脚固定在底部还是滚动到视图中?

  • 如果已修复,您需要在脚本中告诉它:fixedElements: '#header, .footer',
  • 如果您想要滚动,请尝试以下方法之一:在脚本中使用 normalScrollElements: '.footer', 或尝试将页脚放在最后一节元素中

之后我需要查看您的代码。

fullpage.js 将不允许您滚动到 fullpage.js 包装器之外的内容,除非您使用 autoScrolling:false,这似乎不是您想要的。

你的页脚有多大?如果它很小,你为什么不直接使用 fp-auto-height 呢?