最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to play a video in the background on iOS Safari - Stack Overflow

programmeradmin0浏览0评论

I am trying to play a video on a canvas, and by this I can control the area of the video that is displayed.

I can achieve this on desktop or Android browsers. However, on iOS Safari, I can not play a video that is hidden. When I call play() method on a video element (which I have to register on a user-trigger event callback), the video player will pop up at the very top layer of the webpage, even if the video element is NOT appended to the document, and after I close this player, the video will be paused.

Is there a way to disable this poped player and just play the video in the background?

I am trying to play a video on a canvas, and by this I can control the area of the video that is displayed.

I can achieve this on desktop or Android browsers. However, on iOS Safari, I can not play a video that is hidden. When I call play() method on a video element (which I have to register on a user-trigger event callback), the video player will pop up at the very top layer of the webpage, even if the video element is NOT appended to the document, and after I close this player, the video will be paused.

Is there a way to disable this poped player and just play the video in the background?

Share Improve this question edited Mar 9, 2023 at 10:33 leetom asked Mar 9, 2023 at 3:10 leetomleetom 7731 gold badge8 silver badges31 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 4

After I searched for the Safari related security policy, I found this post from webkit.

According to the policy, I can use playsinline to get rid of the fullscreen player. However video.playsinline = true; won't work, and video.setAttribute("playsinline", true); will do the trick. They say this property is a standard one now and I have no idea why I still have to use setAttribute. After this, I can set the video invisible with css like other browsers.

Btw, set the video muted will make the autoplay attribute taking effect.

发布评论

评论列表(0)

  1. 暂无评论