在单独的页面上需要视频

时间:2012-12-17 20:50:12

标签: javascript html5 html5-video

<!DOCTYPE html>
<html> 
<head>
    <title>World Map</title>
    <body>
<p>Click on a clickable area of the map for more info.</p>
<img src ="worldmap.gif" width="576" height="307" alt="World Map" usemap="#worldmap">

<map name="worldmap">

<area shape="rect" coords="265,49,279,64" href="ukanthem.mp4" alt="anthem" onclick="playVideo()"> 
<video id="video1" class="true" autoplay controls width="420">
<source src="ukanthem.mp4" type="video/mp4">
<source src="ukanthem.mp4" type="video/ogg">
</video>
<video id="video2" class=flase" width="420" controls>
<source src="beef.mp4">
</video>
<button id="hideButton" onclick="swap();">Switch</button>


<script>
var flag=true;
function swap() {
var myVideo1=document.getElementById("Video1");
var myVideo2=document.getElementById("video2");
flag=!flag;
video1.setAttribute("class", flag);
video2.setAttribute("class", !flag);
if (flag) {
    video2.pause();
    video1.play();
} else {
    video1.pause();
    video2.play();
}
}
</script>


</map>

</body>
</head>
</html>

我正在创建一个交互式gif图片,点击某些区域后,它会转到播放视频的页面,然后您可以切换到另一个视频,我的视频与交互式地图显示在同一页面上。我希望他们在单独的页面上,点击协调区域

1 个答案:

答案 0 :(得分:0)

我会将href更改为不同的页面而不是mp4文件,并添加要作为参数播放的mp4。让其他页面读取参数并显示视频。

例如:

<area shape="rect" coords="265,49,279,64" href="playVideo.php?video=ukanthem.mp4" alt="anthem" target="_blank"> 

您可以使用普通的html文件代替php文件,让javascript从URL中读取参数。