⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 music.html

📁 STCMS音乐系统 系统功能:   1、随意的添加导航栏目的频道
💻 HTML
字号:
{include file="header.html"}
<div id="body">
<div id="bodyLeft">
  <div class="title">该专辑推荐音乐</div>
  <div class="content">
    <ul class="musicList">
      {foreach from=$recommendMusic item=recommend}
      <li><a href="music.php?id={$recommend.id}" title="音乐:{$recommend.name} 点击:{$recommend.hit}">{$recommend.name}</a></li>
      {/foreach}
    </ul>
  </div>
  <div class="title">该专辑音乐排行</div>
  <div class="content">
    <ul class="musicList">
      {foreach from=$topMusic item=top}
      <li><a href="music.php?id={$top.id}" title="音乐:{$top.name} 点击:{$top.hit}">{$top.name}</a></li>
      {/foreach}
    </ul>
  </div>
  <div class="title">所有专辑推荐音乐</div>
  <div class="content">
    <ul class="musicList">
      {foreach from=$allRecommendMusic item=allRreommend}
      <li><a href="music.php?id={$allRreommend.id}" title="音乐:{$allRreommend.name} 点击:{$allRreommend.hit}">{$allRreommend.name}</a></li>
      {/foreach}
    </ul>
  </div>
  <div class="title">所有专辑音乐排行</div>
  <div class="content">
    <ul class="musicList">
      {foreach from=$allTopMusic item=allTop}
      <li><a href="music.php?id={$allTop.id}" title="音乐:{$allTop.name} 点击:{$allTop.hit}">{$allTop.name}</a></li>
      {/foreach}
    </ul>
  </div>
</div>
<div id="bodyRight">
  <div class="title">音乐播放[Media Play]</div>
  <div id="playerLeft">
    <div class="box">
      <object id="MPlayer" height="64" width="100%" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
        <PARAM NAME="Appearance" VALUE="-1">
        <PARAM NAME="AutoStart" VALUE="-1">
        <PARAM NAME="AllowChangeDisplayMode" VALUE="0">
        <PARAM NAME="AllowHideDisplay" VALUE="0">
        <PARAM NAME="AllowHideControls" VALUE="0">
        <PARAM NAME="AutoRewind" VALUE="-1">
        <PARAM NAME="Balance" VALUE="0">
        <PARAM NAME="CurrentPosition" VALUE="0">
        <PARAM NAME="DisplayBackColor" VALUE="0">
        <PARAM NAME="DisplayForeColor" VALUE="16777215">
        <PARAM NAME="DisplayMode" VALUE="0">
        <PARAM NAME="Enabled" VALUE="-1">
        <PARAM NAME="EnableContextMenu" VALUE="0">
        <PARAM NAME="EnablePositionControls" VALUE="-1">
        <PARAM NAME="EnableSelectionControls" VALUE="-1">
        <PARAM NAME="EnableTracker" VALUE="-1">
        <PARAM NAME="URL" VALUE="">
        <param name="EnableFullScreenControls" value="-1" />
        <PARAM NAME="FullScreenMode" VALUE="0">
        <PARAM NAME="MovieWindowSize" VALUE="0">
        <PARAM NAME="PlayCount" VALUE="0">
        <PARAM NAME="Rate" VALUE="1">
        <PARAM NAME="SelectionStart" VALUE="-1">
        <PARAM NAME="SelectionEnd" VALUE="-1">
        <PARAM NAME="ShowControls" VALUE="-1">
        <PARAM NAME="ShowDisplay" VALUE="-1">
        <PARAM NAME="ShowPositionControls" VALUE="-1">
        <PARAM NAME="ShowTracker" VALUE="-1">
        <PARAM NAME="Volume" VALUE="100">
        <param name="uiMode" value="full" />
      </object>
      <script type="text/javascript">play('{$music.id}')</script>
      <script language="JScript" for="MPlayer" event="playStateChange(ns)">Player.stateChange(ns);</script>
      <script language="JScript" for="MPlayer" event="error()">Player.error();</script>
    </div>
  </div>
  <div id="playerRight">
    <div class="box">
      <ul id="musicInfo">
        <li>音乐名[Name]:{$music.name}</li>
        <li>专辑[Special]:<a href="special.php?id={$music.specialid}">{$music.specialName}</a></li>
        <li>艺术家[Artist]:{$music.artist}</li>
        <li>点击数[Hits]:<font color="red">{$music.hit}</font> 下载[Download]:<font color="red">{$music.download}</font></li>
      </ul>
    </div>
  </div>
  <div class="box">
    <input type="button" value="下载" onclick="download('{$music.id}')"/>
 
    <input type="button" value="报错" onclick="reportError('{$music.id}')" />
 
    <input type="button" value="推荐" onclick="recommend('{$music.id}')" />
    本页面地址:
    <input id="url" type="text" size="45" value="http://stcms.vicp.net/music/music.php?id={$music.id}"/>
  </div>
  <div class="box">
    <div id="lrcoll" style="overflow:hidden; text-align:left; height:300px; margin:0px;padding-top:25px;">
      <div nowrap id="lrcwt1" class="lrcrow"></div>
      <div nowrap id="lrcwt2" class="lrcrow"></div>
      <div nowrap id="lrcwt3" class="lrcrow"></div>
      <div nowrap id="lrcwt4" class="lrcrow"></div>
      <div nowrap id="lrcbox"></div>
      <div nowrap id="lrcbc">正在加载歌词</div>
      <div nowrap id="lrcwt5" class="lrcrow"></div>
      <div nowrap id="lrcwt6" class="lrcrow"></div>
      <div nowrap id="lrcwt7" class="lrcrow"></div>
      <div nowrap id="lrcwt8" class="lrcrow"></div>
    </div>
  </div>
  <div class="box">
    <div class="title">评论[Comments]</div>
    <div id="commentList" class="content"> {foreach from=$comment item=comment}
      <div class="commentTitle">Guest:{$comment.guest} E-mail:<a href="mailto:{$comment.mail}" title="{$comment.mail}">{$comment.mail|truncate:15:"**"}</a> QQ:{$comment.qq} <span title="{$comment.from}">From:{$comment.from|truncate:10:"**"}</span></div>
      <div class="content">{$comment.content}
        {if $comment.reply}
        <div class="box"><b>回复:</b>{$comment.reply}</div>
        {/if} <br />
        <br />
        <br />
        <div class="box">IP:{$comment.ip|truncate:10:"**":true} Time:{$comment.time}</div>
      </div>
      {/foreach} </div>
    <div id="pageCode" class="box">{$pageCode}</div>
    <div class="title">添加评论</div>
    <div class="content">
      <form name="addComment" id="addComment" onsubmit="return false;">
        <table>
          <tr>
            <td>网名:*</td>
            <td><input name="guest" type="text"{if $member} value="{$member.name}"{/if} /></td>
            <td>E-mail:</td>
            <td><input name="mail" type="text"{if $member} value="{$member.mail}"{/if}  /></td>
          </tr>
          </tr>
          
          <tr>
            <td>内容*</td>
            <td colspan="3"><textarea name="content" cols="40" rows="5"></textarea></td>
          </tr>
          <tr>
            <td>Q Q:</td>
            <td><input name="qq" type="text"{if $member} value="{$member.qq}"{/if}  /></td>
            <td>来自:</td>
            <td><input name="from" type="text"{if $member} value="{$member.provience}{$member.city}"{/if}  /></td>
          </tr>
        </table>
        <input name="submit" type="submit" onclick="comment('1','{$music.id}');" value="添加评论" />
      </form>
    </div>
  </div>
</div>
{include file="footer.html"}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -