xqq / mpegts.js

HTML5 MPEG2-TS / FLV Stream Player
Apache License 2.0
1.77k stars 220 forks source link

点击视频会暂停,如何禁用这个特性? #91

Open ntv-wangjian opened 1 year ago

ntv-wangjian commented 1 year ago

点击视频会暂停,如何禁用这个特性,也就是单击视频画面时不要暂停。

HollisMeynell commented 1 year ago

css 对 video 添加 pointer-events: none; 属性 例如

video {
    pointer-events: none;
}