我目前可以播放和由<video>
tag.But任意位置單擊不幸的是,當我加了2影像的功能僅適用於僅第一視頻暫停視頻。播放/暫停多個視頻與一個功能
var video = document.getElementById('vid');
video.addEventListener('click', function() {
this.paused?this.play():this.pause();
},
false);
video.addEventListener("pause", function() {
document.getElementById("paused").style.display = "";
});
video.addEventListener("play", function() {
document.getElementById("paused").style.display = "none";
});
<div id="main">
<div id="computer" class="content">
<div style="margin-left:8%">
<div id="paused" style="display: none">QUESTION HERE</div>
<video width="1000" height="480" id="vid">
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div id="ip" class="content">
<div style="margin-left:8%">
<div id="paused" style="display: none">QUESTION HERE</div>
<video width="1000" height="480" id="vid">
<source src="video2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
與js代碼的任何問題。友善的建議。
** id屬性指定的HTML元素的唯一的ID(該值必須在是唯一HTML文檔)。** http://www.w3schools.com/tags/att_global_id.asp – bulanmaster
在一個文檔中,您不能有多個具有相同標識的元素。 – Carsten
哦,是的,真的。但我怎麼能完成這項任務? – pooh