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

📄 goto.jsp

📁 HomePlayer is an extention of the FreePlayer software provided by the french internet provider Free
💻 JSP
字号:
<%@page contentType="text/html;charset=ISO-8859-15" pageEncoding="ISO-8859-1"%>
<%@page import="org.homeplayer.util.*"%>
<%@page import="org.homeplayer.web.*"%>
<%@page import="org.homeplayer.data.*"%>
<%@page import="org.homeplayer.recorder.*"%>
<%@page import="java.util.*"%>
<%@page import="java.io.*"%>
<jsp:useBean id="hppc" class="org.homeplayer.web.HPPageContext" scope="request">
	<jsp:setProperty name="hppc" property="temporaryPage" 	value="true"/>
	<jsp:setProperty name="hppc" property="request" 		value="<%=request%>"/>
	<jsp:setProperty name="hppc" property="focusSetOnPage" 	value="true"/>
</jsp:useBean> 
<%
VLCInfo info = (VLCInfo)request.getAttribute("VLCINFO") ;
String  link = WebUtil.getParam(request, "link", "Y"); 
%>
<%-- ------------------------------------------------------  --%>
<%-- ------------------- NAVIGATION------------------------  --%>
<%-- ------------------------------------------------------  --%>
<table>
<tr>
	<td width=100>&nbsp;</td>
	<td width=196 valign=center>
<%if (info.getCurrentPlayLength() != 0) {%>
		<table width="100%" border="0" cellspacing="1" cellpadding="1">
			<tr>
<%		for (int i = 0; i < 32; i++) {
			String ptime = VLCInfo.getVLCTime((int) ((double) info.getCurrentPlayLength() / 32.)* i );
			String posUrl = "action.jsp?next="+WebUtil.urlEncode("info.jsp?disapear=5&link=" + i)+"&control=seek&seek_value="+ptime ;					
%>
				<td valign=bottom align=center><a <%= link.equals(Integer.toString(i)) ? "focused" : "" %> href="<%=posUrl %>" onBlur='timePos="";' onFocus='timePos="<%=ptime %>";'><table abgcolor="#FF00003F" bgcolor="#FFFFFFFF"><tr><td width=3><img width=3 height=5></td></tr></table></a></td>
		<%}%>
			</tr>			
		</table>
<%} %>
	</td>
	<td width=70><var name=timePos width=70></td>
	<td>
	<form name="form1" method="get" action="info.jsp">
		<input type=hidden name=disapear value="5">
		<table border="0" cellpadding=0>
			<tr>
				<td><input type=text name=hour size=2 maxlength=1></td>
				<td>&nbsp;h.</td>
				<td><input type=text name=min size=2 maxlength=2></td>
				<td>&nbsp;m.</td>
				<td><input type=text name=sec size=2 maxlength=2></td>
				<td>&nbsp;s.</td>
			</tr>
		</table>
	</form>
	</td>
</tr>
</table>

⌨️ 快捷键说明

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