jwplayer.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. //扣点
  7. ViewOnlineKFen($showdown_r,$u,$u['userid'],$classid,$id,$pathid,$r);
  8. $width=550;
  9. $height=450;
  10. $openwidth=$width+30;
  11. $openheight=$height+60;
  12. ?>
  13. <HTML>
  14. <HEAD>
  15. <TITLE><?=$r['title']?> --- 媒体播放器</TITLE>
  16. <META HTTP-EQUIV="Expires" CONTENT="0">
  17. <link rel="stylesheet" href="js/player.css">
  18. <script language="javascript">
  19. window.resizeTo(<?=$openwidth?>,<?=$openheight?>);
  20. window.moveTo(100,100);
  21. window.focus()
  22. </script>
  23. <SCRIPT language=javascript>
  24. function click() {
  25. if (event.button==2) {
  26. alert('对不起,您想做什么?')
  27. }
  28. }
  29. document.onmousedown=click
  30. </SCRIPT>
  31. <BODY id=thisbody bgcolor="#000000" topMargin=0 leftMargin=0 rightMargin=0 bottomMargin=0 style="scroll:no; overflow: hidden;" ondragstart="self.event.returnValue=false" onselectstart="self.event.returnValue=false">
  32. <table width="100%" border="0" cellpadding="3" cellspacing="1">
  33. <tr>
  34. <td><div align="center">
  35. <script src="<?=$public_r['newsurl']?>e/data/modadd/moreplayer/empirecmsplayer.js"></script>
  36. <script>
  37. EmpireCMSPlayVideo('jwplayer','<?=$trueurl?>','<?=$width?>','<?=$height?>',1,'<?=$public_r['newsurl']?>');
  38. </script>
  39. </div></td>
  40. </tr>
  41. </table>
  42. </body>
  43. </html>