top.asp
资源名称:1.rar [点击查看]
上传用户:ziqing_518
上传日期:2022-08-09
资源大小:446k
文件大小:9k
源码类别:

多媒体编程

开发平台:

ASP/ASPX

  1. <!--#include file="daohang.asp" -->
  2. <%iperr()%>
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  6. <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
  7. <meta name="ProgId" content="FrontPage.Editor.Document">
  8. <title><%=strHomepage_1%>视频系统</title>
  9. <style type="text/css">
  10. <!--
  11. BODY{ font-family:"宋体"; font-size: 12px;
  12. scrollbar-face-color:ffffff;
  13. scrollbar-shadow-color:C1C1BB;
  14. scrollbar-highlight-color:C1C1BB;
  15. scrollbar-3dlight-color:EBEBE4;
  16. scrollbar-darkshadow-color:EBEBE4;
  17. scrollbar-track-color:F4F4F0;
  18. scrollbar-arrow-color:CACAB7;
  19. }
  20. p, <%if boolSoftsize_1=False then response.write("font, ")%>select, option, textarea, form { font-family:"宋体"; font-size: 12px }
  21. td { table-layout:fixed;word-break :break-all; font-family:"宋体"; font-size: 12px}
  22. a:link { text-decoration: none }
  23. a:visited { text-decoration: none }
  24. a:hover { text-decoration: underline }
  25. a:active { text-decoration: none; font-size: 12px }
  26. .border { border-collapse: collapse; border-style: dotted; border-width: 1;  color:#000000; background-color:#000000}
  27. .shadow1 { font-size: 12px; filter:dropshadow(color=#000000,offx=1,offy=1);color:#ffffff;}
  28. .shadow2 { font-size: 12px; filter:dropshadow(color=#d5d5d5,offx=1,offy=1);color:#000000;}
  29. .p1 { color: #ffffff; font-size: 12px; text-decoration: none; }
  30. .p2 { color: #000000; font-size: 12px; text-decoration: none; }
  31. .p3 { color: #004080; font-size: 14px; text-decoration: none; }
  32. .p4 { background-color: #C0C0C0; border: 1 solid #000000; color: #333333; }
  33. INPUT{BORDER-TOP-WIDTH: 1px; PADDING-RIGHT: 1px; PADDING-LEFT: 1px; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: 9pt; BORDER-LEFT-COLOR: #cccccc; BORDER-BOTTOM-WIDTH: 1px; BORDER-BOTTOM-COLOR: #cccccc; PADDING-BOTTOM: 1px; BORDER-TOP-COLOR: #cccccc; PADDING-TOP: 1px; HEIGHT: 18px; BORDER-RIGHT-WIDTH: 1px; BORDER-RIGHT-COLOR: #cccccc}
  34. -->
  35. </style>
  36. <script Language="JavaScript">
  37. //***********默认设置定义.*********************
  38. tPopWait=50;//停留tWait豪秒后显示提示。
  39. tPopShow=5000;//显示tShow豪秒后关闭提示
  40. showPopStep=20;
  41. popOpacity=99;
  42. //***************内部变量定义*****************
  43. sPop=null;
  44. curShow=null;
  45. tFadeOut=null;
  46. tFadeIn=null;
  47. tFadeWaiting=null;
  48. document.write('<style type="text/css" id="defaultPopStyle">');
  49. document.write('.cPopText {  background-color: #F8F8F5;color:#000000; border: 1px #000000 solid;font-color: font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; filter: Alpha(Opacity=0)}');
  50. document.write('</style>');
  51. document.write('<div id="dypopLayer" style="position:absolute;z-index:1000;" class="cPopText"></div>');
  52. function showPopupText()
  53. {
  54. var o=event.srcElement;
  55. MouseX=event.x;
  56. MouseY=event.y;
  57. if(o.alt!=null && o.alt!='')
  58. {
  59. o.dypop=o.alt;o.alt=''
  60. }
  61. if(o.title!=null && o.title!="")
  62. {
  63. o.dypop=o.title;o.title=''
  64. }
  65. if(o.dypop!=sPop)
  66. {
  67. sPop=o.dypop;
  68. clearTimeout(curShow);
  69. clearTimeout(tFadeOut);
  70. clearTimeout(tFadeIn);
  71. clearTimeout(tFadeWaiting);
  72. if(sPop==null || sPop=='') 
  73. {
  74. dypopLayer.innerHTML='';
  75. dypopLayer.style.filter='Alpha()';
  76. dypopLayer.filters.Alpha.opacity=0;
  77. }
  78. else 
  79. {
  80. if(o.dyclass!=null) popStyle=o.dyclass 
  81. else popStyle='cPopText';
  82. curShow=setTimeout('showIt()',tPopWait);
  83. }
  84. }
  85. }
  86. function showIt()
  87. {
  88. dypopLayer.className=popStyle;
  89. dypopLayer.innerHTML=sPop;
  90. popWidth=dypopLayer.clientWidth;
  91. popHeight=dypopLayer.clientHeight;
  92. if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24
  93. else popLeftAdjust=0;
  94. if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24
  95. else popTopAdjust=0;
  96. dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
  97. dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
  98. dypopLayer.style.filter='Alpha(Opacity=0)';
  99. fadeOut();
  100. }
  101. function fadeOut(){
  102. if(dypopLayer.filters.Alpha.opacity<popOpacity) 
  103. {
  104. dypopLayer.filters.Alpha.opacity+=showPopStep;
  105. tFadeOut=setTimeout('fadeOut()',1);
  106. }
  107. else 
  108. {
  109. dypopLayer.filters.Alpha.opacity=popOpacity;
  110. tFadeWaiting=setTimeout('fadeIn()',tPopShow);
  111. }
  112. }
  113. function fadeIn(){
  114. if(dypopLayer.filters.Alpha.opacity>0)
  115.  {
  116. dypopLayer.filters.Alpha.opacity-=1;
  117. tFadeIn=setTimeout('fadeIn()',1);
  118. }
  119. }
  120. document.onmouseover=showPopupText;
  121. //标题处理结束
  122. function MM_openBrWindow(theURL,winName,features) { //v2.0
  123.   window.open(theURL,winName,features);
  124. }
  125. </script>
  126. </head>
  127. <body topmargin="3" leftmargin="3" bgcolor="#E7E7E7" marginheight="0" marginwidth="0" style="OVERFLOW: scroll; OVERFLOW-X: hidden" text=#000000 link=#000000 vlink=#000000>
  128. <base onmouseover="window.status='<%=strEstate_1%>';return true">
  129. <map name="Map">
  130.   <area shape="rect" coords="4,3,80,19" href="<%=strUrl_1%>">
  131.   <area shape="rect" coords="4,21,80,39" href="#" onClick="javascript:window.external.AddFavorite('<%=strUrl_1%>', '<%=strHomepage_1%>')">
  132.   <area shape="rect" coords="4,41,80,57" href="#" onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('<%=strUrl_1%>');">
  133. </map>
  134. <%=ADShowFunction(4,1)%>
  135. <SCRIPT LANGUAGE="JavaScript">
  136. <!-- Begin
  137. var xPos = 20;
  138. var yPos = document.body.clientHeight;
  139. var step = 1;
  140. var delay = 30; 
  141. var height = 0;
  142. var Hoffset = 0;
  143. var Woffset = 0;
  144. var yon = 0;
  145. var xon = 0;
  146. var pause = true;
  147. var interval;
  148. dd.style.top = yPos;
  149. function changePos() {
  150. width = document.body.clientWidth;
  151. height = document.body.clientHeight;
  152. Hoffset = dd.offsetHeight;
  153. Woffset = dd.offsetWidth;
  154. dd.style.left = xPos + document.body.scrollLeft;
  155. dd.style.top = yPos + document.body.scrollTop;
  156. if (yon) {
  157. yPos = yPos + step;
  158. }
  159. else {
  160. yPos = yPos - step;
  161. }
  162. if (yPos < 0) {
  163. yon = 1;
  164. yPos = 0;
  165. }
  166. if (yPos >= (height - Hoffset)) {
  167. yon = 0;
  168. yPos = (height - Hoffset);
  169. }
  170. if (xon) {
  171. xPos = xPos + step;
  172. }
  173. else {
  174. xPos = xPos - step;
  175. }
  176. if (xPos < 0) {
  177. xon = 1;
  178. xPos = 0;
  179. }
  180. if (xPos >= (width - Woffset)) {
  181. xon = 0;
  182. xPos = (width - Woffset);
  183.    }
  184. }
  185. function start() {
  186. dd.visibility = "visible";
  187. interval = setInterval('changePos()', delay);
  188. }
  189. function pause_resume() {
  190. if(pause) {
  191. clearInterval(interval);
  192. pause = false;
  193. }
  194. else {
  195. interval = setInterval('changePos()',delay);
  196. pause = true;
  197.    }
  198. }
  199. start();
  200. //  End -->
  201. </script>
  202. <div align="center">
  203. <table width="775" border="0" align="center" cellpadding="0" cellspacing="0">
  204.   <tr>
  205.     <td width="100%">
  206.       <table border="0" width="100%" cellspacing="0" cellpadding="0">
  207.         <tr>
  208.           <td width="69"><img border="0" src="images/anim01.gif" width="69" height="19"></td>
  209.           <td width="584"><img border="0" src="images/index_002.gif" width="586" height="19"></td>
  210.           <td width="122"><img border="0" src="images/anim02.gif" width="122" height="19"></td>
  211.         </tr>
  212.       </table>
  213.       <table border="0" width="100%" cellspacing="0" cellpadding="0">
  214.         <tr>
  215.           <td width="367"><img border="0" src="images/index_001.gif" width="368" height="15"></td>
  216.           <td width="300" background="images/nav_bg01.gif" align="center"><%user_login()%></td>
  217.           <td width="108"><img border="0" src="images/index_003.gif" width="108" height="15"></td>
  218.         </tr>
  219.       </table>
  220.       <table border="0" width="100%" cellspacing="0" cellpadding="3">
  221.         <tr>
  222.           <td width="82"><img src="images/gogo.gif" width="82" height="60" border="0" usemap="#Map"></td>
  223.           <td width="180"><img border="0" src="<%=imgTitles_1%>" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid" width="180" height="60"></td>
  224.           <td width="495" align="right"><img border="0" src="<%=imgBanner_1%>" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid" width="468" height="60"></td>
  225.         </tr>
  226.       </table>
  227.       <table border="0" width="100%" cellspacing="0" cellpadding="0">
  228.         <tr>
  229.           <td width="82"></td>
  230.           <td width="226"><img border="0" src="images/index_006.gif" width="227" height="16"></td>
  231.           <td width="432" background="images/index_009.gif"><marquee onmouseout="if (document.all!=null){this.start()}" onmouseover="if (document.all!=null){this.stop()}"><%affiche_indexshow()%>
  232.             </marquee></td>
  233.           <td width="35"><img border="0" src="images/index_008.gif" width="35" height="16"></td>
  234.         </tr>
  235.       </table>
  236.     </td>
  237.   </tr>
  238. </table>