flver.php 1.7 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=480;
  9. $height=360;
  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="0" cellspacing="0">
  33. <tr>
  34. <td align="center">
  35. <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="<?=$width?>" height="<?=$height?>">
  36. <param name="movie" value="images/flvplayer.swf?vcastr_file=<?=$trueurl?>&vcastr_title=<?=$r[title]?>&BarColor=0xFF6600&BarPosition=1&IsAutoPlay=1">
  37. <param name="quality" value="high">
  38. <param name="allowFullScreen" value="true" />
  39. <embed src="images/flvplayer.swf?vcastr_file=<?=$trueurl?>&vcastr_title=<?=$r[title]?>&BarColor=0xFF6600&BarPosition=1&IsAutoPlay=1" allowFullScreen="true" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="<?=$width?>" height="<?=$height?>"></embed>
  40. </object>
  41. </td>
  42. </tr>
  43. </table>
  44. </body>
  45. </html>