ios上滚动条不能滑动 滚动卡住的问题
iosapp上viewweb h5不能滑动的问题
1.给滑动容器添加样式
overflow-x: hidden!important;
overflow-y:scroll!important;
touch-action: auto!important;
-webkit-overflow-scrolling: touch!important;//惯性滑动
2.html添加
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
3.滑动容器的所有父元素添加样式(只给要滚动父容器添加即可)
overflow:hidden!important;
参考:
https://www.cnblogs.com/xiahj/p/8036419.html
https://blog.csdn.net/CZDBGSY/article/details/141724284