所以我试图用自定义控件制作一个小视频,这是第一次,所以我不知道我在做什么。但是我已经让播放暂停按钮工作了,但是我如何制作停止按钮?
我的代码:
视频播放器:
<div class="videobox">
<video id="video" width="100%" height="100%">
<source src="testvideo.m4v" type="video/mp4">
<p>
Your browser doesn't support HTML5 video.
</p>
</video>
</div>
还有我的控制
<div class="buttonrow">
<input type="range" id="seek-bar" value="0">
<button type="button" id="play-pause" class="play">Play</button>
<button type="button" id="mute">Mute</button>
<input type="range" id="volume-bar" min="0" max="1" step="0.1" value="1">
<button type="button" id="full-screen">Full-Screen</button>
</div>
希望可以有人帮帮我 :)