iosapp上viewweb h5不能滑动的问题
1.给滑动容器添加样式
css
overflow-x: hidden!important;
overflow-y:scroll!important;
touch-action: auto!important;
-webkit-overflow-scrolling: touch!important;//惯性滑动
2.html添加
html
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
3.滑动容器的所有父元素添加样式(只给要滚动父容器添加即可)
css
overflow:hidden!important;
参考: