mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 11:18:46 +08:00
fix(xgplayer): 修复playNext enter不隐藏问题
This commit is contained in:
parent
d0ad49b702
commit
cc2b768ac5
@ -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">
|
||||
|
@ -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) {
|
||||
|
@ -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)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user