ReadMe.html 7.76 KB
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>帝國CMS-視頻播放器集合插件</title>
<style type=text/css>
<!--
{ font-family: 細明體; font-size: 12px; line-height: 19px; color: #333333;text-decoration: none} a:hover { color: #FF0000}a:hover { text-decoration: none}a:hover { line-height: 19px}a:link { font-family: 細明體; font-size: 14px; line-height: 19px; color: #333333;text-decoration: none} a:visited { text-decoration: none; }Table{ font-family: 細明體; font-size: 13px; color: #000000; line-height: 21px; text-decoration: none } }
.box {border: 1px solid #333333;height: 10px;width: 10px;font-size:1px;cursor:hand;filter:blur(add=ture,direction=135,strength=2);}
.STYLE1 {color: #666666}
-->
</Style>
</head>

<body>
<table width="800" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#4FB4DE">
  <tr>
    <td height="38"><div align="center"><strong><font color="#FFFFFF" size="4">帝國CMS-視頻播放器集合插件使用說明</font></strong></div></td>
  </tr>
  
  <tr> 
    <td height="30" bgcolor="#FFFFFF"> <div align="center"><a href="http://www.phome.net/OpenSource/" target="_blank"><font color="#FF0000"><strong>帝國CMS                 - 最安全、最穩定的開源CMS系統</strong></font></a></div></td>
  </tr>
  <tr> 
    <td height="23" bgcolor="#C9F1FF"><strong>一、顯示效果:</strong></td>
  </tr>
  <tr> 
    <td height="30" bgcolor="#FFFFFF"> <table width="99%" border="0" align="center" cellpadding="1" cellspacing="1">
        <tr> 
          <td height="23"><div align="center"><img src="doc/demopic.jpg" width="600" height="404"></div></td>
        </tr>
      </table>
      <br></td>
  </tr>
  <tr> 
    <td height="23" bgcolor="#C9F1FF"><strong>二、使用語法說明</strong></td>
  </tr>
  <tr> 
    <td height="30" bgcolor="#FFFFFF"> <table width="99%" border="0" align="center" cellpadding="1" cellspacing="1">
        <tr> 
          <td height="25"><strong><font color="#0000FF">(一)、【顯示視頻播放器JS函數語法說明】</font></strong></td>
        </tr>
        <tr> 
          <td height="25"><strong>1、格式:</strong></td>
        </tr>
        <tr> 
          <td height="25"><textarea name="textarea" cols="60" rows="5" wrap="off" style="WIDTH:100%">&lt;script src=&quot;/e/data/modadd/moreplayer/empirecmsplayer.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
EmpireCMSPlayVideo('播放器類型','視頻地址','顯示寬度','顯示高度',是否自動播放,'帝國CMS網站地址');
&lt;/script&gt;</textarea></td>
        </tr>
        <tr>
          <td height="25">參數說明:</td>
        </tr>
        <tr>
          <td height="25"><table width="99%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
            <tr>
              <td width="22%" bgcolor="#FFFFFF">播放器類型:</td>
              <td width="78%" bgcolor="#FFFFFF">設為空''或'auto'為自動識別<br>
                設為'flash'為採用flash播放器<br>
                設為'jwplayer'為採用jwplayer播放器<br>
                設為'realplayer'為採用realplayer播放器<br>
                設為'mediaplayer'為採用mediaplayer播放器</td>
            </tr>
            <tr>
              <td bgcolor="#FFFFFF">視頻地址:</td>
              <td bgcolor="#FFFFFF">填要播放的視頻地址,比如:http://localhost/file/movie.flv</td>
            </tr>
            <tr>
              <td bgcolor="#FFFFFF">顯示寬度:</td>
              <td bgcolor="#FFFFFF">視頻顯示的寬度。</td>
            </tr>
            <tr>
              <td bgcolor="#FFFFFF">顯示高度:</td>
              <td bgcolor="#FFFFFF">視頻顯示的高度。</td>
            </tr>
            <tr>
              <td bgcolor="#FFFFFF">是否自動播放:</td>
              <td bgcolor="#FFFFFF">0為不自動播放,1為自動播放。</td>
            </tr>
            <tr>
              <td bgcolor="#FFFFFF">帝國CMS網站地址:</td>
              <td bgcolor="#FFFFFF">要以「/」結尾,也就是後台系統參數設置的網站地址,模板中用「[!--news.url--]」即可。</td>
            </tr>
          </table></td>
        </tr>
        <tr>
          <td height="25">&nbsp;</td>
        </tr>
        
        <tr> 
          <td height="25"><strong>2、使用範例1:</strong></td>
        </tr>
        <tr> 
          <td height="25"><textarea name="textarea2" cols="80" rows="5" wrap="off" style="WIDTH:100%">&lt;script src=&quot;[!--news.url--]e/data/modadd/moreplayer/empirecmsplayer.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
EmpireCMSPlayVideo('auto','[!--movieurl--]','600','400',0,'[!--news.url--]');
&lt;/script&gt;</textarea></td>
        </tr>
        <tr>
          <td height="25"><font color="#666666">(其中例子中的「[!--movieurl--]」是假設視頻地址字段名是movieurl,「[!--news.url--]」為網站地址。)</font></td>
        </tr>
        <tr> 
          <td height="25"><strong>3、使用範例2:</strong>(不加到模板,直接在html頁面中播放視頻)</td>
        </tr>
        <tr> 
          <td height="25"><textarea name="textarea3" cols="80" rows="5" wrap="off" style="WIDTH:100%">&lt;script src=&quot;/e/data/modadd/moreplayer/empirecmsplayer.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
EmpireCMSPlayVideo('auto','http://localhost/file/movie.flv','600','400',0,'/');
&lt;/script&gt;</textarea></td>
        </tr>
        <tr> 
          <td height="25"><strong>4、使用範例3:</strong>(播放電影系統模型中的第一個視頻地址)</td>
        </tr>
        <tr>
          <td height="25"><textarea name="textarea5" cols="80" rows="10" wrap="off" style="WIDTH:100%">&lt;?php
$onlinepath=$navinfor['onlinepath'];//取得onlinepath字段內容
$olr=explode(egetzy('rn'),$onlinepath);
$olfr=explode('::::::',$olr[0]);
?&gt;
&lt;script src=&quot;[!--news.url--]e/data/modadd/moreplayer/empirecmsplayer.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
EmpireCMSPlayVideo('auto','&lt;?=$olfr[1]?&gt;','600','400',0,'[!--news.url--]');
&lt;/script&gt;</textarea></td>
        </tr>
        <tr>
          <td height="25">&nbsp;</td>
        </tr>
        <tr> 
          <td height="25"><strong><font color="#0000FF">(二)、【完整範例】</font></strong></td>
        </tr>
        
        <tr>
          <td height="25">
          <textarea name="textarea4" cols="80" rows="22" wrap="off" style="WIDTH:100%">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot;&gt;
&lt;title&gt;視頻播放&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;td&gt;

&lt;script src=&quot;/e/data/modadd/moreplayer/empirecmsplayer.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
EmpireCMSPlayVideo('auto','http://localhost/file/movie.flv','600','400',0,'/');
&lt;/script&gt;

&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;</textarea></td>
        </tr>
        <tr>
          <td height="25">&nbsp;</td>
        </tr>
      </table></td>
  </tr>
  <tr> 
    <td>&nbsp;</td>
  </tr>
</table>
<hr>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
  <tr>
    <td height="25">
<div align="center"><a href="http://www.phome.net" target="_blank">官方網站</a> | 
        <a href="http://bbs.phome.net" target="_blank">論壇交流</a> | <a href="http://www.phome.net/product/" target="_blank">產品中心</a> 
        | <a href="http://www.phome.net/download/" target="_blank">產品下載中心</a></div></td>
  </tr>
</table>
</body>
</html>