Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为在 ipad 上查看的网站使用最新的 iscroll 脚本。它可以工作,但您必须按下并缓慢滚动才能正确滚动。我可以在 iscroll 脚本或设置中更改任何内容以提高对触摸的灵敏度并且滚动本身更快吗?
真正提出解决方案有点困难。但这里有一些指示。
附加全局 touchmove 事件(并防止默认行为)。
document.attachEvent('touchmove', function(e) { e.preventDefault(); }, false);
将滚动条内的 html 元素保持在最低限度。您可以添加 -webkit-transform: translate3d(0,0,0) 以强制元素通过硬件加速。