使用Javascript播放HTML5视频

时间:2016-03-07 06:18:34

标签: javascript html5

如何通过按一个键(例如按“R”键)而不是使用鼠标在网页中播放HTML5视频?我可以以某种方式使用JavaScript来做到这一点?

2 个答案:

答案 0 :(得分:0)

是的,可以做到。以下是应该有效的代码。

<script type="text/javascript">
  function myKeyPress(e){
    var keynum;

    if(window.event) { // IE                    
      keynum = e.keyCode;
    } else if(e.which){ // Netscape/Firefox/Opera                   
      keynum = e.which;
    }

    if(keynum == 82){  // 82 is key code for r.
         var samplevideo = document.getElementById('samplevideo');
         samplevideo.play();
    }  


  }
</script>

答案 1 :(得分:0)

这是代码,

<!DOCTYPE html> 
<html> 
    <head>
        <script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
    </head>
    <body> 

        <video width="400" controls id="videoId">
            <source src="http://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
            <source src="http://www.w3schools.com/html/mov_bbb.ogg" type="video/ogg">
            Your browser does not support HTML5 video.
        </video>

    </body> 
    <script type="text/javascript">
         $(document).keydown(function(e) {
            if (e.keyCode == 82 ) {
                alert("You have Pressed R , lets play the video");
                document.getElementById('videoId').play();
            }
        });
    </script>
</html>

我也创造了一个小提琴。

https://jsfiddle.net/ykaadart/