因为页面通过调用document addEventL istener来添加一个mousewheel事件的***handler ,并通过设置passive属性的值为true来声明***handler是被动监听mousewheel事件,即handler内部不会调用事件的preventDefault函数。

解决方法:

在css文件中添加

* {
    touch-action: none; }