video.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2. "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4. <head>
  5. <title></title>
  6. <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
  7. <script type="text/javascript" src="../internal.js"></script>
  8. <link rel="stylesheet" type="text/css" href="video.css"/>
  9. </head>
  10. <body>
  11. <div class="wrapper">
  12. <div id="videoTab">
  13. <div id="tabHeads" class="tabhead">
  14. <span tabSrc="video" class="focus"><var id="lang_tab_insertV"></var></span>
  15. </div>
  16. <div id="tabBodys" class="tabbody">
  17. <div id="video" class="panel">
  18. <table>
  19. <tr>
  20. <td><label for="videoUrl" class="url"><var id="lang_video_url"></var></label></td>
  21. <td><input id="videoUrl" type="text"></td>
  22. </tr>
  23. </table>
  24. <div id="preview"></div>
  25. <div id="videoInfo">
  26. <fieldset>
  27. <legend><var id="lang_video_size"></var></legend>
  28. <table>
  29. <tr>
  30. <td><label for="videoWidth"><var id="lang_videoW"></var></label></td>
  31. <td><input class="txt" id="videoWidth" type="text"/></td>
  32. </tr>
  33. <tr>
  34. <td><label for="videoHeight"><var id="lang_videoH"></var></label></td>
  35. <td><input class="txt" id="videoHeight" type="text"/></td>
  36. </tr>
  37. </table>
  38. </fieldset>
  39. <fieldset>
  40. <legend><var id="lang_alignment"></var></legend>
  41. <div id="videoFloat"></div>
  42. </fieldset>
  43. </div>
  44. </div>
  45. <!--<div id="videoSearch" class="panel" style="display: none">-->
  46. <!--<table style="margin-top: 5px;">-->
  47. <!--<tr>-->
  48. <!--<td><input id="videoSearchTxt" type="text" /></td>-->
  49. <!--<td>-->
  50. <!--<select id="videoType">-->
  51. <!--<option value="0"></option>-->
  52. <!--<option value="29"></option>-->
  53. <!--<option value="1"></option>-->
  54. <!--<option value="5"></option>-->
  55. <!--<option value="15"></option>-->
  56. <!--<option value="21"></option>-->
  57. <!--<option value="31"></option>-->
  58. <!--</select>-->
  59. <!--</td>-->
  60. <!--<td><input id="videoSearchBtn" type="button"/></td>-->
  61. <!--<td><input id="videoSearchReset" type="button" /></td>-->
  62. <!--</tr>-->
  63. <!--</table>-->
  64. <!--<div id="searchList"></div>-->
  65. <!--</div>-->
  66. </div>
  67. </div>
  68. </div>
  69. <script type="text/javascript" src="video.js"></script>
  70. <script type="text/javascript">
  71. window.onload = function () {
  72. video.init();
  73. $focus($G("videoUrl"));
  74. };
  75. </script>
  76. </body>
  77. </html>