26 lines
714 B
JavaScript
26 lines
714 B
JavaScript
function onYouTubeIframeAPIReady() {
|
|
|
|
var player;
|
|
|
|
player = new YT.Player('konami', {
|
|
videoId: 'V4oJ62xrFZo', // 👈 video id.
|
|
width: 560,
|
|
height: 316,
|
|
playerVars: {
|
|
'autoplay': 1,
|
|
'controls': 1,
|
|
'showinfo': 0,
|
|
'modestbranding': 0,
|
|
'loop': 1,
|
|
'fs': 0,
|
|
'cc_load_policty': 0,
|
|
'iv_load_policy': 3
|
|
},
|
|
events: {
|
|
'onReady': function (e) {
|
|
e.target.setVolume(33); // For max value, set value to 100.
|
|
document.getElementById("konami").addEventListener("onKonami", () => {e.target.playVideo()})
|
|
}
|
|
}
|
|
});
|
|
} |