vue-scroller
vue-scroller copied to clipboard
列表中使用iframe插入视频代码,如果手指放在视频上就无法进行滚动
列表中有视频 文字 和图片组成 视频都是使用iframe嵌入第三方通用地址
对在 iframe 中的表现,暂时不太清楚
iframe { pointer-events: none; }
js* touchEnd (e) { if (e.target && e.target.children && e.target.children.length === 1 && e.target.children[0].tagName.toLowerCase() === 'iframe') { const iframe = e.target.children[0]; iframe.style.pointerEvents = 'auto'; setTimeout( () => { iframe.style.pointerEvents = 'none'; },600) } },