fix(xgplayer): 修复playNext enter不隐藏问题

This commit is contained in:
hongqiongxing 2023-12-14 19:40:25 +08:00 committed by lixiangfei
parent d0ad49b702
commit cc2b768ac5
3 changed files with 11 additions and 11 deletions

View File

@ -52,15 +52,12 @@
border: 2px solid red;
box-sizing: border-box;
}
body {
padding-left: 100px;
}
</style>
</head>
<body>
<div id="video0" style="margin: 0 auto"></div>
<!-- <div class="pannel">
<div class="pannel">
<div class="tool">
<button type="submit" class="btn" id="js-destroy0" onclick="window.destroy(0)">
销毁
@ -97,7 +94,7 @@
<h4>log info:</h4>
</div>
</div>
</div> -->
</div>
<div id="video1" style="margin: 0 auto"></div>
<!-- <div class="pannel">
<div class="tool">

View File

@ -37,12 +37,11 @@ function init(index = 0, config = {}) {
window[p] = new Player({
id: 'video' + index,
preProcessUrl: (url, ext) => {
console.log('>>>preProcessUrl', url, ext)
return {
url: url
}
},
url: "xx",
url: "",
DynamicBg: {
disable: false
},
@ -52,7 +51,7 @@ function init(index = 0, config = {}) {
autoplayMuted: true,
videoInit: true,
preloadTime: 20,
width: '80%',
width: '96%',
ignores:['playbackrate'],
plugins: [],
rotate: true,
@ -213,7 +212,6 @@ function init(index = 0, config = {}) {
}
init()
init(1)
// init(1, {
// i18n: [
@ -278,7 +276,12 @@ function changeLang(index) {
function playNext(index) {
console.log('playNext', index)
const p = `player${index}`
const config = {}
const config = {
autoplay: true,
url: ""
}
window[p].playNext(config)
// window[p].play()
}
function destroy(index) {

View File

@ -1226,7 +1226,7 @@ class Player extends MediaProxy {
clsList.forEach((cls) => {
this.removeClass(cls)
})
this.addClass(STATE_CLASS.ENTER)
this.addClass(STATE_CLASS.NO_START)
this.emit(Events.RESET)
}