index.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title></title>
  6. <link href="styles/font-awesome.min.css" rel="stylesheet" />
  7. <link href="styles/app.css" rel="stylesheet" />
  8. <script src="scripts/jquery-2.2.3.js"></script>
  9. </head>
  10. <body>
  11. <div class="demo-app">
  12. <header>
  13. <div>
  14. <h2 class="app-title">
  15. NanUI BorderlessForm Demo
  16. </h2>
  17. </div>
  18. <div></div>
  19. </header>
  20. <content>
  21. <div class="app-sys-command-container">
  22. <ul class="sys-commands">
  23. <!--Use <n-ui-command> attribute to control form's system commands. -->
  24. <li n-ui-command="minimize">
  25. <i class="fa fa-window-minimize"></i>
  26. </li>
  27. <!--Use <n-ui-command> attribute to control form's system commands. -->
  28. <li n-ui-command="maximize">
  29. <i class="fa fa-window-maximize"></i>
  30. </li>
  31. <!--Use <n-ui-command> attribute to control form's system commands. -->
  32. <li n-ui-command="close">
  33. <i class="fa fa-close"></i>
  34. </li>
  35. </ul>
  36. </div>
  37. <article>
  38. <h2>Borderless Form</h2>
  39. <div class="app-state-watcher">
  40. <div>
  41. <b>STATE:</b> <span id="label-form-state">normal</span>
  42. <p>77778999 Change window state to trigger this event.</p>
  43. </div>
  44. <div>
  45. <b>ACTIVATED:</b> <span id="label-activated-state">N/A</span>
  46. <p>Active/Deactive window state to trigger this event.</p>
  47. </div>
  48. <div>
  49. <b>SIZE:</b> <span id="label-size-state">width:N/A height:N/A</span>
  50. <p>Change window size to trigger this event.</p>
  51. </div>
  52. </div>
  53. <h3>Dropdown issue test:</h3>
  54. <p>
  55. <select>
  56. <option>This is NanUI</option>
  57. <option>This is NanUI</option>
  58. <option>This is NanUI</option>
  59. <option>This is NanUI</option>
  60. <option>This is NanUI</option>
  61. <option>This is NanUI</option>
  62. </select>
  63. </p>
  64. <p>In previous version, if you let menu of this select opened, resizing or moving window will cause the dropdown menu at a wrong position. This issue has been solved since 0.6.4.</p>
  65. <h3>Dialog test:</h3>
  66. <p>
  67. <button onclick="showWindow('123456')">Show Window OK</button>
  68. </p>
  69. <p>
  70. <button onclick="showDialog()">Show Dialog</button>
  71. </p>
  72. </article>
  73. </content>
  74. </div>
  75. <script>
  76. $(function () {
  77. $(window).on("hoststatechange", function (e) {
  78. console.log(e.detail);
  79. $("#label-form-state").text(e.detail.stateName);
  80. });
  81. $(window).on("hostactivestate", function (e) {
  82. console.log(e.detail);
  83. $("#label-activated-state").text(e.detail.stateName);
  84. if (e.detail) {
  85. if (e.detail.state === 1) {
  86. $("html").addClass("app-active");
  87. }
  88. else {
  89. $("html").removeClass("app-active");
  90. }
  91. }
  92. });
  93. $(window).on("hostsizechange", function (e) {
  94. console.log(e.detail);
  95. $("#label-size-state").text(`width:${e.detail.width} height:${e.detail.height}`);
  96. });
  97. });
  98. </script>
  99. </body>
  100. </html>