1.滑动时候警告[Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive.
2.解决方案
解决办法1:
在touch的事件监听方法上绑定第三个参数{ passive: false },
通过传递 passive 为 false 来明确告诉浏览器:事件处理程序调用 preventDefault 来阻止默认滑动行为。
elem.addEventListener( ‘touchstart‘, fn, { passive: false } );
解决办法2:
* { touch-action: pan-y; } // 使用全局样式样式去掉
.
原文地址:https://www.cnblogs.com/crazycode2/p/9692171.html
时间: 2024-10-11 07:56:10