media.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <title>Media</title>
  6. <style type="text/css" rel="stylesheet">
  7. body {
  8. font-size:12px;
  9. font-family: "sans serif",tahoma,verdana,helvetica;
  10. margin:0;
  11. background-color:#F0F0EE;
  12. overflow:hidden;
  13. }
  14. label {
  15. cursor:pointer;
  16. }
  17. .main {
  18. margin: 10px;
  19. }
  20. .table {
  21. list-style-image:none;
  22. list-style-position:outside;
  23. list-style-type:none;
  24. margin:0;
  25. padding:0;
  26. display:block;
  27. }
  28. .table li {
  29. padding:0;
  30. margin-bottom:10px;
  31. display:list-item;
  32. line-height:1.5;
  33. }
  34. .table li label {
  35. font-weight:bold;
  36. }
  37. .table li input {
  38. vertical-align:middle;
  39. }
  40. .table li img {
  41. vertical-align:middle;
  42. }
  43. </style>
  44. <script type="text/javascript">
  45. var KE = parent.KE;
  46. location.href.match(/\?id=([\w-]+)/i);
  47. var id = RegExp.$1;
  48. KE.event.ready(function() {
  49. KE.util.hideLoadingPage(id);
  50. }, window, document);
  51. </script>
  52. </head>
  53. <body>
  54. <div class="main">
  55. <ul class="table">
  56. <li>
  57. <label for="url">媒体文件地址</label>
  58. <input type="text" id="url" name="url" value="http://" maxlength="255" style="width:90%;" />
  59. </li>
  60. <li>
  61. <label for="width">宽度</label>
  62. <input type="text" id="width" name="width" value="550" maxlength="4" style="width:50px;text-align:right;" /> px
  63. </li>
  64. <li>
  65. <label for="height">高度</label>
  66. <input type="text" id="height" name="height" value="400" maxlength="4" style="width:50px;text-align:right;" /> px
  67. </li>
  68. <li>
  69. <label for="autostart">自动播放</label>
  70. <input type="checkbox" id="autostart" name="autostart" value="1" />
  71. </li>
  72. </ul>
  73. </div>
  74. </body>
  75. </html>