3 つのビデオとそれらのサムネイルがあります。選択したサムネイルに基づいて、最初のビデオの src を変更しようとしています。
私のHTML:
<video id="trailers">
<source src="vLast.mp4" type="video/mp4">
<source src="vLast.webm" type="video/webm">
</video>
<div id="playlist" class="animated fadeInRight">
<div class="thumb" id="tGow"><img src="TbGow.jpg" onClick="changeTrailer()"/></div>
<div class="thumb" id="tLast"><img src="TbLast.jpg" onClick="changeTrailer()"/></div>
<div class="thumb" id="tTwo"><img src="TbTwo.jpg" onClick="changeTrailer()"/></div>
</div>
私のスクリプト:
function changeTrailer(){
var media = document.getElementById('trailers')
var thumb = document.getElementsByTagName("img")
if(thumb.getAttribute("src") == "TbGow.jpg"){
media.src = "vGow.mp4";
media.load();
media.play();
}else if (thumb.getAttribute("src") == "TbLast.jpg"){
media.src = "vTwo.mp4";
media.load();
media.play();
}else if(thumb.getAttribute("src") == "TbLast.jpg"){
media.src = "vLast.mp4";
media.load();
media.play();
}
}