解决在不禁用滚动功能的情况下防止iOS手机弹跳

400 阅读1分钟

ios反弹的是HTML标签


```js
html {
    height  : 100%;
    overflow: hidden;
    position: relative;
}
body {
    height  : 100%;
    overflow: auto;
    position: relative;
}
```
尝试了各种解决方案包括inobounce.js  但是尝试禁用弹跳时所有的滚动页面都被禁用。应该是因为内容足够大无需滚动,因此滚动被禁用。