1 <script type="text/javascript" src="ckplayer/ckplayer.js"></script> 2 <div class="video" style="width: 1000px;height: 600px;"></div> 3 <script type="text/javascript"> 4 var videoObject = { 5 container: '.video',//“#”代表容器的ID,“.”或“”代表容器的class 6 variable: 'player',//該屬性必需設置,值等於下面的new chplayer()的對象 7 poster:'pic/wdm.jpg',//封面圖片 8 video:'test.mp4'//視頻地址 9 }; 10 var player=new ckplayer(videoObject); 11 </script>
html5支持的視頻格式,視頻地址是相對於此頁面的。而用flash播放器視頻地址好像是相對於ckplayer.swf文件位置。