1、浏览器打开某度网盘的其他人分享的视频的播放界面。2、按“F12”进入“Devtools”也就是审查元素。3、切换到“控制台”,然后在里输入如下代码即可。
1
2
3
4
5
|
let video = document.querySelectorAll(“#html5player_html5_api”)[0] video.controls=”true” video.pause=null document.querySelectorAll(“#html5player > div.vjs-control-bar”)[0].style.display = “none” document.querySelectorAll(“#video-wrap-outer > div.video-overlay-iframe”)[0].style.display = “none” |
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理(doubaiwang@126.com)。
评论(0)