一个接一个地播放mp4视频

时间:2014-07-03 21:34:10

标签: video mp4

我正在使用此代码来调用某些视频:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Videos</title>
</head>

<body>
<div>
<ul>
    <li><a href="videos/1_1.mp4" target="_blank">Video 01</a></li>
    <li><a href="videos/1_2.mp4" target="_blank">Video 02</a></li>
    <li><a href="videos/1_3.mp4" target="_blank">Video 03</a></li>
    <li><a href="videos/1_4.mp4" target="_blank">Video 04</a></li>      
</ul>
</div>
</body>
</html>

我想知道是否还要播放一个又一个的视频。

非常感谢!

1 个答案:

答案 0 :(得分:0)

您可以使用html5 <video>标记在您的网页中嵌入视频。然后设置该元素的onended事件处理程序以调用javascript函数将<source>元素更改为列表中的下一个视频,然后重新开始播放。

请参阅: http://www.w3schools.com/tags/tag_video.asphttp://www.w3schools.com/tags/ref_eventattributes.asponended事件处理程序在“媒体事件”部分中已关闭)