index.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  2. <title>图片预览</title>
  3. <style>
  4. td {
  5. font-size: 12px;
  6. }
  7. body {
  8. font-size: 12px;
  9. text-align: center;
  10. margin-top: 0px;
  11. margin-right: 0px;
  12. margin-bottom: 0px;
  13. margin-left: 0px;
  14. }
  15. hr { height: 1px; color: #000000 }
  16. textarea {
  17. font-size: 12px;FONT-FAMILY: "Tahoma", "MS Shell Dlg";
  18. }
  19. A:link, A:active
  20. {
  21. color: #333366;
  22. text-decoration: none;
  23. }
  24. A:visited
  25. {
  26. color: #333366;
  27. text-decoration: none;
  28. }
  29. A:hover
  30. {
  31. color: #FF0000;
  32. text-decoration: underline;
  33. }
  34. SELECT {
  35. FONT-SIZE: 12px; FONT-FAMILY: "MS Shell Dlg"
  36. }
  37. FORM {
  38. MARGIN-TOP: 3px; FONT-SIZE: 12px; MARGIN-BOTTOM: 0px; FONT-FAMILY: "Tahoma", "MS Shell Dlg"
  39. }
  40. INPUT {
  41. FONT-SIZE: 12px; FONT-FAMILY: "Tahoma", "MS Shell Dlg"
  42. }
  43. .picborder { border: #999999; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px}
  44. </style>
  45. <script>
  46. function Request(sName)
  47. {
  48. /*
  49. get last loc. of ?
  50. right: find first loc. of sName
  51. +2
  52. retrieve value before next &
  53. */
  54. var sURL = new String(window.location);
  55. var iQMark= sURL.lastIndexOf('?');
  56. var iLensName=sName.length;
  57. //retrieve loc. of sName
  58. var iStart = sURL.indexOf('?' + sName +'=') //limitation 1
  59. if (iStart==-1)
  60. {//not found at start
  61. iStart = sURL.indexOf('&' + sName +'=')//limitation 1
  62. if (iStart==-1)
  63. {//not found at end
  64. return 0; //not found
  65. }
  66. }
  67. iStart = iStart + + iLensName + 2;
  68. var iTemp= sURL.indexOf('&',iStart); //next pair start
  69. if (iTemp ==-1)
  70. {//EOF
  71. iTemp=sURL.length;
  72. }
  73. return sURL.slice(iStart,iTemp ) ;
  74. sURL=null;//destroy String
  75. }
  76. </script>
  77. <script>
  78. function bbimg(o){
  79. var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
  80. return false;
  81. }
  82. </script>
  83. </head><body>
  84. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="0">
  85. <tr>
  86. <td><div align="center">
  87. </div></td>
  88. </tr>
  89. <tr>
  90. <td align="center">
  91. <script>
  92. if(Request("url")!=0){
  93. document.write("<a title=\"点击观看完整的图片...\" href=\""+Request("url")+"\" target=\"_blank\"><img src=\""+Request("url")+"\" border=0 class=\"picborder\" onmousewheel=\"return bbimg(this)\" onload=\"if(this.width>screen.width-500)this.style.width=screen.width-500;\">");
  94. }
  95. </script>
  96. </td>
  97. </tr>
  98. <tr>
  99. <td><div align="center"></div></td>
  100. </tr>
  101. <tr>
  102. <td><div align="center">注:支持鼠标滚轮放大&amp;缩小图片.</div></td>
  103. </tr>
  104. <tr>
  105. <td><div align="center">
  106. <input type="button" name="Submit" value="关闭" onclick="window.close();">
  107. </div></td>
  108. </tr>
  109. </table>
  110. </body>
  111. </html>