Fe-interview: [html] 第460天 HTML5的video在手机端如何实现进来页面时就自动播放?

Created on 18 Jul 2020  ·  2Comments  ·  Source: haizlin/fe-interview

第460天 HTML5的video在手机端如何实现进来页面时就自动播放?

3+1官网

我也要出题

html

Most helpful comment

autoplay=true

理想情况autoplay=true。但是现实是:基本所有浏览器都屏蔽了这个属性。
能实现的现在只有微信了,微信有一套自己的规则的内核,可以使用:controlslist="nodownload" poster="" x5-video-player-fullscreen="true" webkit-playsinline="true" x-webkit-airplay="true" playsinline="true" x5-playsinline 来达到自动播放的目的。

All 2 comments

autoplay=true

autoplay=true

理想情况autoplay=true。但是现实是:基本所有浏览器都屏蔽了这个属性。
能实现的现在只有微信了,微信有一套自己的规则的内核,可以使用:controlslist="nodownload" poster="" x5-video-player-fullscreen="true" webkit-playsinline="true" x-webkit-airplay="true" playsinline="true" x5-playsinline 来达到自动播放的目的。

Was this page helpful?
0 / 5 - 0 ratings