FullPage 实例实例对象在使用 to 的时候页面不滚动。
MarRoar opened this issue · 0 comments
MarRoar commented
问题补充:
`
var mainPage = new AlloyTouch.FullPage("#fullpage",{...})
oBtn.addEventListener("touchend", function () {
mainPage.to(4) # 点击oBtn 跳转到 第4页
})
`
出现的情况是页面直接淡出(而不是滚动到指定页码位置),progressBar 也会跳转到对应的页码。
我在 alloy_touch.full_page.js 的 to 方法里面加
this.alloyTouch.currentPage = index
然后就可以了。