คำถามติดแท็ก youtube-javascript-api

5
YouTube iframe API: ฉันจะควบคุมผู้เล่น iframe ที่มีอยู่ใน HTML ได้อย่างไร
ฉันต้องการควบคุมผู้เล่น YouTube ที่ใช้ iframe ผู้เล่นนี้จะอยู่ใน HTML อยู่แล้ว แต่ฉันต้องการควบคุมพวกเขาผ่าน JavaScript API ฉันได้อ่านเอกสารประกอบสำหรับ iframe APIซึ่งอธิบายวิธีเพิ่มวิดีโอใหม่ไปยังหน้าด้วย API แล้วควบคุมด้วยฟังก์ชั่นเครื่องเล่น YouTube: var player; function onYouTubePlayerAPIReady() { player = new YT.Player('container', { height: '390', width: '640', videoId: 'u1zgFlCw8Aw', events: { 'onReady': onPlayerReady, 'onStateChange': onPlayerStateChange } }); } รหัสนั้นสร้างวัตถุผู้เล่นใหม่และกำหนดให้กับ 'ผู้เล่น' จากนั้นแทรกเข้าไปใน #container div แล้วฉันจะดำเนินการเกี่ยวกับ 'ผู้เล่น' และโทรplayVideo(), pauseVideo()ฯลฯ …

14
จะหยุดเล่น YouTube ชั่วคราวเมื่อซ่อน iframe ได้อย่างไร
ฉันมี div ที่ซ่อนอยู่ซึ่งมีวิดีโอ YouTube ในไฟล์<iframe>. เมื่อผู้ใช้คลิกที่ลิงค์ div นี้จะปรากฏให้เห็นผู้ใช้ควรจะเล่นวิดีโอได้ เมื่อผู้ใช้ปิดแผงวิดีโอควรหยุดเล่น ฉันจะบรรลุเป้าหมายนี้ได้อย่างไร? รหัส: <!-- link to open popupVid --> <p><a href="javascript:;" onClick="document.getElementById('popupVid').style.display='';">Click here</a> to see my presenting showreel, to give you an idea of my style - usually described as authoritative, affable and and engaging.</p> <!-- popup and contents --> <div id="popupVid" …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.