今天发现jw player5.8好像不支持空格暂停视频,以前的旧版本好像支持。因为需要更新了,那就返这个方法记录下来方便以后再碰到。
因为已经有js接口,只需要用JS来控制是否按下空格来决定视频的暂停与播放。
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JW Player空格控制播放暂停</title>
</head>
<body>
<script type="text/javascript" src="http://www.86y.org/js/ufo.js"></script>
<div id='jwplayer1'></div>
<script type="text/javascript">
document.onkeydown = function(ev){
var ev = window.event?window.event:ev;
var code = (ev.keyCode || ev.which);
if(code == 32) {
jwplayer('jwplayer1').pause();
}
}
jwplayer('jwplayer1').setup({
'flashplayer': 'http://www.86y.org/player.swf',
'file': 'http://183.60.199.4/18/41/18/letv-uts/754063-AVC-537708-AAC-31586-5622234-413625444-f73ffed0a2e27bfc685e838d3a5b73f5-1351603344920.flv',
'controlbar': 'bottom',
'width': '470',
'height': '320',
'image':'http://img.funshion.com/pictures/649/433/649433_m.jpg',
'allowfullscreen':'true',
'plugins': {
'ltas': {
'cc': 'yveazxdzgczrkzw'
}
}
});
</script>
</body>
</html>
相关推荐:
flash 播放器代码实例下载
flvplayer播放器提供源代码(做自己的播放器)
大家有什么问题或技术上的想法可以在此与大家分享,也可以加入前端爱好者QQ群(141999928)一起学习进步:
【幸凡前端技术交流群】
如果您觉得本文的内容对您的学习有所帮助,捐赠与共勉,支付宝(左)或微信(右)