fix(xgplayer): poster插件增加setConfig

This commit is contained in:
hongqiongxing 2024-04-15 15:04:07 +08:00 committed by hongqx
parent d28f5aaaaa
commit ae2d56c8f3

View File

@ -77,6 +77,14 @@ class Poster extends Plugin {
}
}
setConfig (config) {
Object.keys(config).forEach(key => {
this.config[key] = config[key]
})
const { poster } = this.config
this.update(poster)
}
onTimeUpdate () {
if (!this.player.currentTime) {
this.once(Events.TIME_UPDATE, () => {