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
原文地址:https://blog.csdn.net/qq_37215621/article/details/144181930
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!