fullpage.js silentMoveTo 似乎不起作用?

fullpage.js silentMoveTo doesn't seem to work?

我正在创建一个 fullpage.js 网站,我需要在其中滚动幻灯片以在特定幻灯片上查看。像这样:

1
X2X
3
4

X2X 是 3 张幻灯片,我想放在第 2 张幻灯片上,以便用户可以向左或向右移动。

我正在使用 OnLeave 调用 silentMoveTo 但我所做的一切似乎都没有生效:

onLeave: function(origin, destination, direction) {
        var params = {
            origin: origin,
            destination: destination,
            direction: direction
        };
        //after leaving first section
        console.log("leaving...");
        if (origin.index == 0 && direction == "down") {
        // moves the slides to the 2nd slide
        console.log("fire after 1?");
        fullpage_api.silentMoveTo(1, 1);
        }
    }

但是silentMoveTo不起作用。这是一个 CodePen https://codepen.io/thetwopct/pen/bZwyRw

我做错了什么提示?

不需要通过 OnLeave/silentMoveTo 执行此操作,只需将 active class 添加到我想放映的幻灯片中即可。

根据 https://github.com/alvarotrigo/fullPage.js/issues/522