如何设置Html 5视频的开始时间和结束时间?
我想使用数字键在特定时间开始和停止html5视频。
$(document).ready(function() {
var $vid = document.getElementById("video1");
$vid.width = $( window ).width();
$(document).keypress(function(e) {
var code = e.keyCode;
if(code == 49) {
$vid.currentTime = 0;
$vid.play();
$vid.addEventListener("timeupdate", function() {
if ($vid.currentTime >= 2) {
$vid.pause();
}
}, false);
}
if(code == 50) {
$vid.currentTime = 2;
$vid.play();
$vid.addEventListener("timeupdate", function() {
if ($vid.currentTime >= 4) {
$vid.pause();
}
}, false);
}
});
});
到目前为止这是我的剧本.. 我可以从代码50转到代码49但不是从49到50! 如何解决这个问题?