flash.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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>Flash</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">Flash地址</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. </ul>
  69. </div>
  70. </body>
  71. </html>