AlloyTeam / PhyTouch

Smooth scrolling, rotation, pull to refresh, page transition and any motion for the web - 丝般顺滑的触摸运动方案
http://alloyteam.github.io/PhyTouch/
MIT License
2.97k stars 526 forks source link

FullPage 实例实例对象在使用 to 的时候页面不滚动。 #115

Open MarRoar opened 6 years ago

MarRoar commented 6 years ago

问题补充: `

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

然后就可以了。