📄 frameurl.tpl.php
字号:
<style type="text/css">
.play{
background-color: #EDF1F3;
border: 1px solid #ADB9C2;
height:20px;
width:88px;
background-image: url(images/play.jpg);
text-align:center;
line-height:20px;
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;">
<?php if( count($this->movieplayer)>1 || count($this->movieserver)>1){?>
<tr>
<td align="left">{if count($this->movieplayer)>1}
<select name="player" id="player">
<?php foreach($this->movieplayer as $row){?>
<option value="<?php echo $row['tag'];?>"><?php echo $row['name'];?></option>
<?php }?>
</select>
{/if}
{if count($this->movieserver)>1}
<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>
<?php }?>
<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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -