test.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <html>
  2. <head>
  3. <script src="res/common.js?v=1.0.5"></script>
  4. <script src="res/framework/mootools/mootools-1.6.0_all.js"></script>
  5. </head>
  6. <body>
  7. <input type="text" id="txtinput"/>
  8. <script>
  9. x = {
  10. "contentNode": {
  11. "height": "100%",
  12. "width": "100%",
  13. "background-color": "#CCC"
  14. },
  15. "toolbarButton":{
  16. "height": "32px",
  17. "line-height": "32px",
  18. "margin": "3px 10px 3px 3px",
  19. "float": "left",
  20. "border": "1px solid #CCC",
  21. "background-color": "#CCC",
  22. "cursor": "pointer"
  23. },
  24. "toolbarButton_over": {
  25. "border-top": "1px solid #f7f7f7",
  26. "border-left": "1px solid #f7f7f7",
  27. "border-right": "1px solid #999",
  28. "border-bottom": "1px solid #999",
  29. "background-color": "#CCC"
  30. },
  31. "toolbarButton_down": {
  32. "border-top": "1px solid #999",
  33. "border-left": "1px solid #999",
  34. "border-right": "1px solid #f7f7f7",
  35. "border-bottom": "1px solid #f7f7f7",
  36. "background-color": "#eeeeee"
  37. },
  38. "toolbarIconButton": {
  39. "background-repeat": "no-repeat",
  40. "background-position": "center center",
  41. "height": "32px",
  42. "width": "30px",
  43. "float": "left"
  44. },
  45. "toolbarTextButton": {
  46. "background-repeat": "no-repeat",
  47. "background-position": "center center",
  48. "height": "32px",
  49. "padding-right": "5px",
  50. "margin-left": "30px"
  51. },
  52. "toolbarDateSelect: {
  53. "height": "24px",
  54. "line-height": "24px",
  55. "margin": "6px 10px 6px 3px",
  56. "float": "right"
  57. },
  58. "toolbarNode":{
  59. "height": "40px"
  60. },
  61. "screenNode": {
  62. "overflow": "hidden",
  63. "background-color": "#333",
  64. "color": "#FFF"
  65. },
  66. "bottomNode": {
  67. "height": "30px"
  68. },
  69. "screenScrollNode": {
  70. "overflow": "hidden",
  71. "height": "100%",
  72. "margin-right": "8px"
  73. },
  74. "screenInforAreaNode": {
  75. "overflow": "hidden",
  76. "padding": "10px"
  77. }
  78. }
  79. </script>
  80. </body>
  81. </html>