标签:tps list 页面 项目 shu ref listen com int
移动端项目中,在滚动的时候,会报出以下提示:
[Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive.
See https://www.chromestatus.com/features/5093566007214080
touch
的事件监听方法上绑定第三个参数{ passive: false }
,target.addEventListener('touch', function () {
}, { passive: false });
* {
touch-action: pan-y;
}
touch-action
的使用方法见:https://developer.mozilla.org/zh-CN/docs/Web/CSS/touch-action
https://juejin.im/post/5ad804c1f265da504547fe68
https://www.jianshu.com/p/04bf173826aa
标签:tps list 页面 项目 shu ref listen com int
原文地址:https://www.cnblogs.com/cckui/p/10059888.html