release: xgplayer@3.0.21-alpha.7

This commit is contained in:
hongqiongxing 2024-08-21 13:46:43 +08:00
parent 36df210eb8
commit 844883a42a
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "xgplayer",
"version": "3.0.21-alpha.6",
"version": "3.0.21-alpha.7",
"description": "video player",
"main": "dist/index.min.js",
"module": "es/index.js",

View File

@ -41,7 +41,7 @@ class Poster extends Plugin {
notHidden: false, // 是否一直显示
poster: '', // 封面图地址
fillMode: 'fixWidth', // 封面图填充方式fixWidth / fixHeight / cover / contain
autoLoad: false, // 是否自动请求img
autoLoad: false // 是否自动请求img
}
}
@ -124,13 +124,13 @@ class Poster extends Plugin {
this.emit('poster_load', {
type: 'success',
error: 0,
url: poster,
url: poster
})
}).catch(e => {
this.emit('poster_load', {
type: 'error',
error: 1,
url: poster,
url: poster
})
})
}