我在div(包装器)上有一个水平滚动,里面有很多孩子。一切都适用于每个浏览器。但是当谈到iOS时,滚动滞后很多。知道什么是错的吗?
.wrapper {
width: 100%;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
.item {
width: 200px;
height: 200px;
}

<div class="wrapper">
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
</div>
&#13;