如何使用JW Player来播放Flash并隐藏控制按钮和自定义播放完成后执行的JS
<!--htl add 2014-10-31 <--></--> <!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>jwplay6.10使用-隐藏控制按钮和视频播放完毕后执行js事件</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" class="library" src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script> </head> <body> <div id="video"> <div id="sp_box"></div> </div> </body> <!-- jwpsrv.com 提供的在线js --> <script src="http://jwpsrv.com/library/0cnCVGMOEeSQmA6sC0aurw.js"></script> <script type="text/javascript"> var Player; //页面加载的时候 $(document).ready(function(){ LoadingJwPlayer(); //视频开始播放事件 Player.onPlay(function(){ console.log("开始播放视频"); //设置播放器背景色,默认为黑色,但我们的视频是白色的背景,这里无法更改,我只能通过更改源码来解决(jwplayer.js将"#000000"更改为"#ffffff") jQuery("#sp_box").css(‘bgcolor‘,‘#ffffff‘); }); //视频播放完毕事件 Player.onPlaylistComplete(function(){ console.log("load complay"); alert("hello,视频播放完毕啦!"); }); }); //netfox-htl edit 2014-11-03加载播放器并设置相关的参数 //jwplayer文档地址:http://www.longtailvideo.com/support/open-video-ads/13048/ova-configuration-guide function LoadingJwPlayer(){ Player=jwplayer(‘sp_box‘).setup({ //flash显示效果,none,fill,exactfit,uniform,默认为uniform有黑色边框 //参考:http://support.jwplayer.com/customer/portal/articles/1413113-configuration-options-reference#other stretching:‘fill‘, autostart: true,//自动播放 controls:false,//显示控件按钮 // OVA for JW5 only: Turn on playlist control - enables the next/previous controlbar buttons and load the entire playlist into the player in one go. allowPlaylistControl:false, //OVA for JWx only: Specifies whether or not overlays and ad notices are to be repositioned based on whether or not the control bar shows and hides. assessControlBarState:false, width: jQuery(document).width(),//视频宽 height: jQuery(document).height(),//视频高 file: "http://videos-jp.jwpsrv.com/zWLy8Jer/videos/i8oQD9zd-1753142.mp4?77c801d752d5207784c49e7ed80fb953798fae0fcca03ecf79558496a374b6096b35a35d4d31c99192f10fb8e9b9c158204e6312da47541f86c39eb6119edf45a6f6b4a92a2cb9b13f25fdf1928a4e8e1870f2fa05",//要播放的文件 flashplayer: "/flash/jwplayer.flash6.6.swf"//播放flash的播放器地址,需要替换成你本地的播放器地址 }); } </script> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。