如何设置Html 5视频的开始时间和结束时间?

时间:2013-11-15 12:10:12

标签: javascript html5 video

如何设置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! 如何解决这个问题?

0 个答案:

没有答案