滚动仅在方向更改后才起作用吗?在苹果手机,iPad
Iscroll 仅在方向改变后才开始,如果没有方向改变,它的行为就像橡皮筋一样。
Iscroll only starts after orientation was change, with out orientation change it will behave like rubber band.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了这个问题。原来我调用iScroll太早了。我的解决方案是要么像 cubiq 在网站上建议的那样将 iScroll 包装在超时中,要么在所有内容都完成渲染后在 iScroll 上调用 .refresh() 。
您可以通过打开控制台并调用 yourScroll.refresh(); 来测试这一点
I had this problem. It turned out that I was calling iScroll too early. My solution was to either wrap the iScroll in a timeout like cubiq suggests on the site, or call .refresh() on your iScroll once everything has finished rendering.
You can test this by opening up console and calling yourScroll.refresh();