如何跳转到不同 fullpage.js 滚动部分之间的 #id 锚点?

How to jump to #id anchor bewteen different fullpage.js scroll sections?

我想知道是否可以 滚动到两个不同 fullpage.js 滚动部分之间的#id anchor/bookmark?

我们通过初始化知道

$('#fullpage').fullpage({
    anchors:['firstSection', 'secondSection'],
    animateAnchor: true
});

当我们访问http://fullpageexample.com/#secondSection 它一直滚动到目标锚点部分,直到停止。

但是如果secondSection里面有很多文章, 并且要求是建立一个像

这样的 link
<a href="article2-in-section2" >jump button</a> 

并将焦点直接移至锚点,

<div id="article2-in-section2"></div> 

位于由 fullpage.js

初始化的另一个滚动部分内

是否可以在不破坏 fullpage.js 效果的情况下实现? (有可用的回调函数, 但我没有看到将焦点移动到#id)

的回调那么简单
afterLoad (anchorLink, index)
onLeave (index, nextIndex, direction)

jsfiddle 显示页面:http://jsfiddle.net/7PwsS/973/show/

jsfiddle 编辑:http://jsfiddle.net/7PwsS/973/

不,这是不可能的,如果你不使用 scrollBar:true,那就更不可能了。