1
justin2018 336 天前
试一试这个 但是视频会没有声音
``` const video = document.querySelector("video"); if (!video) return; const promise = video.play(); if (promise !== undefined) { promise.then(() => { // Autoplay started }).catch(error => { // Autoplay was prevented. video.muted = true; video.play(); }); } ``` |
2
wohefengyiyang OP @justin2018 这个不行的,我之前试过了,ios 低电量模式下会阻止,必须要用户与屏幕有交互。。。我看了滴滴的一个做法,是把视频分割成图像帧了,然后轮流播放。。但是巨卡。
|