fix: 🐛 修复Vivo playsinline失败问题

This commit is contained in:
gemstone 2024-12-16 16:00:59 +08:00
parent 30cb962906
commit 253a930032

View File

@ -203,6 +203,11 @@ class MediaProxy extends EventEmitter {
this.media.autoplay = true
}
// Warning一些移动端浏览器Like Vivo需要直接设置JS属性否则会导致失效
if (options.playsinline) {
this.media.playsinline = true
}
/**
* @private
*/