2012-11-12 41 views

回答

1

試試這個JSFiddle。停止/啓動視頻的捷徑是'alt + enter key'。

HTML:

<video src="http://v2v.cc/~j/theora_testsuite/320x240.ogg" controls id="video"> 
    Your browser does not support the <code>video</code> element. 
</video> 
<textarea></textarea> 

的Javascript(使用jQuery):

$(function(e) { 
    $('textarea').keydown(function(e) { 
     // shortcut for stopping/starting the video 
     // is alt + enter 
     if (e.altKey && e.keyCode == 13) { 
      toggleVideoPlay(); 
      return false; 
     } 
    }); 
}); 

function toggleVideoPlay() { 
    var video = $('#video')[0]; 
    if (video.paused) { 
     video.play(); 
    } else { 
     video.pause() 
    } 
}​ 
+0

謝謝,這正是我需要的。 –

相關問題