我有一個包含10個視頻的導航(菜單)欄,我希望每個視頻都帶有腳註,只需點擊一下即可。現在,只需點擊一下,每個視頻都會出現,但我不知道如何處理不同的腳註?與popcornjs,如何播放視頻並在一個點擊顯示腳註?
這裏是我的html:
<div id="menu">
<uL>
<li>Choose a Country:</li>
<li><a href="javascript:changeSource1();">US</a></li>
<li><a href="javascript:changeSource2();">Canada</a></li>
</ul>
</div>
<div id="content">
<div class="video-player">
<video id="videos" controls>
<source id="mp4" src="Video/(name of the video).mp4" type="video/mp4" />
<source id="ogv" src="Video/(name of the video).ogv" type="video/ogg" />
</video>
</div>
<div id="video-text">
<p id="popcorn-text">Ipsum Lorem...Aenean consectetur ornare pharetra. Praesent et urna eu justo convallis sollicitudin. Nulla porttitor mi euismod neque vulputate sodales. </p>
</div>
</div>
這裏是我POPCORNJS代碼只對視頻作品:
<script>
function changeSource1()
{
document.getElementById("mp4").src= "Video/(name of the video).mp4";
document.getElementById("ogv").src= "Video/(name of the video).ogv";
document.getElementById("videos").load();
}
</script>
我怎麼能有多功能與popcornjs代碼(如顯示不同的註腳爲每個視頻)? 謝謝, N