解决微信小程序ios端滚动卡顿的问题

方案1:直接使用微信小程序提供的 “ scroll-view " 组件。

<scroll-view scroll-y style="height: 100%;">
    <!--你要滚动的内容-->
</scroll-view>

  注意:必须要设置scroll-view的高度height

方案2:

view{
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}

  这种方法虽然可以让列表滚动,但会伴随副作用(比如fixed元素会跟随滚动再恢复位置),不推荐

猜你喜欢

转载自www.cnblogs.com/goloving/p/10563472.html