因此,基本上我已經嵌入了一個不應該自動播放的視頻,當播放被靜音,代碼工作正常,但我只想它運行onStateChange功能一次,否則無論何時播放/暫停視頻會將視頻靜音。有誰知道如何將該功能限制爲單次執行?幫助是非常讚賞:)限制功能1執行YouTube播放器API
function onYouTubeIframeAPIReady() {
player = new YT.Player('video-placeholder', {
videoId: 'sAhYEfQ1168',
playerVars: {
'autoplay': 0,
'controls': 0,
'autohide': 1,
'wmode': 'opaque',
'showinfo': 0,
'loop': 1,
'fs':0,
'rel':0
},
events: {
'onReady': onPlayerReady
}
});
}
function onPlayerReady(event) {
player.mute();
}
對不起,不工作:( –
實際上設法使用你的答案,但使用事件「onReady」。謝謝你! –
@IndianaPorter建議編輯包含不同的參考比原來的問題;原來的問題仍然引用'onStateChange','' onPlayerStateChange'。或許更新原始問題?模式是一樣的。 – guest271314