downurl.tpl.php

来自「a short sketch about linux syntex lines.」· PHP 代码 · 共 52 行

PHP
52
字号
<style type="text/css">
.play{
	background-color: #EDF1F3;
	border: 1px solid #ADB9C2;
	height:17px;
	width:80px;
	background-image: url(images/play.jpg);
	text-align:center;
	margin:3px;
	float:left;
}
.play a:visited {
	color: #FF0000;
}
.play  a:link {
	color: #FF0000;
}
.play  a:hover {
	color: #FF0000;
}
.play  a:active {
	color: #333333;
}
.play a:visited{
	color:#666666;
	text-decoration:none;
}
</style>
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="margin:5px;">
  <tr>
    <td align="left">
	  {if count($this->movieserver)>1}&nbsp;
      <select name="server" id="server">
		<!-- {loop $this->movieserver $row} -->
		<option value="<?php echo $row['sid'];?>"><?php echo $row['name'];?></option>
		<!-- {/loop} -->
      </select>
	  {/if}
    </td>
  </tr>
  <tr>
    <td>
	<div style="float:left;width:100%">
	<!-- {loop $this->url $row} -->
		<div class="play" onmousemove="this.style.backgroundColor='#FFDDDD'" onmouseout="this.style.backgroundColor='#EDF1F3'">
		<?php echo $row['openurl'];?>
		</div>
	<!-- {/if} -->
	</div>
	</td>
  </tr>
</table>

⌨️ 快捷键说明

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