mpegts.js
mpegts.js copied to clipboard
点击视频会暂停,如何禁用这个特性?
点击视频会暂停,如何禁用这个特性,也就是单击视频画面时不要暂停。
css 对 video 添加 pointer-events: none;
属性
例如
video {
pointer-events: none;
}