google浏览器滑动出现以下问题:

滑动报 Unable to preventDefault inside passive event listener due to target being treated as passive 的解决方法

 

 

解决办法如下:
html元素下添加样式 touch-action: none;

html{
   touch-action:none;
}

 

相关文章: