我在网页上的iOS Safari中有垂直滚动问题:在滚动时,页面以非常缓慢的方式移动,具有高阻力(这种行为在iOS浏览器中并不常见)
我试图找出问题:
<!-- piece of HTML listing --> <body> <div id="wrapper"> (here goes some content) </div> </body>
我在overflow-x:hidden中检测到问题;规则为div#wrapper,将其更改为“overflow:hidden”或在Web调试面板中动态删除它.
重复Safari / iOS 6.1.4和7(iPad和iPhone),也在OS X上的iOS模拟器中重复.
解决方法
您可以尝试将webkit特定的css行添加到div中:
#wrapper{ -webkit-overflow-scrolling: touch; }
阅读更多关于动量和ios滚动在这里:http://css-tricks.com/snippets/css/momentum-scrolling-on-ios-overflow-elements/