vue-scroller icon indicating copy to clipboard operation
vue-scroller copied to clipboard

列表中使用iframe插入视频代码,如果手指放在视频上就无法进行滚动

Open Yooole opened this issue 8 years ago • 3 comments

Yooole avatar Jul 12 '17 09:07 Yooole

列表中有视频 文字 和图片组成 视频都是使用iframe嵌入第三方通用地址

Yooole avatar Jul 12 '17 09:07 Yooole

对在 iframe 中的表现,暂时不太清楚

wangdahoo avatar Jul 24 '17 08:07 wangdahoo

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) } },

junlv avatar Jan 18 '18 10:01 junlv