design.html 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <include file="public@header"/>
  2. <style>
  3. html, body {
  4. padding: 0;
  5. height: 100%;
  6. margin: 0;
  7. overflow: hidden;
  8. }
  9. #simulator, #setting-iframe {
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .setting-panel-wrap {
  14. position: fixed;
  15. left: 0;
  16. bottom: 0;
  17. top: 0;
  18. width: 350px;
  19. border-right: 1px solid #eee;
  20. display: none;
  21. background: #fff;
  22. }
  23. #setting-iframe-wrap {
  24. position: absolute;
  25. top: 0;
  26. bottom: 50px;
  27. right: 0;
  28. left: 0;
  29. }
  30. .setting-panel-wrap .panel {
  31. }
  32. .setting-panel-wrap .footer {
  33. position: absolute;
  34. bottom: 0;
  35. width: 100%;
  36. height: 50px;
  37. border-top: 1px solid #eee;
  38. padding: 8px;
  39. }
  40. #close-setting-panel {
  41. position: absolute;
  42. top: 10px;
  43. right: 10px;
  44. z-index: 99;
  45. font-size: 18px;
  46. }
  47. #show-setting-panel {
  48. position: fixed;
  49. top: 30px;
  50. left: 30px;
  51. z-index: 99;
  52. font-size: 20px;
  53. line-height: 50px;
  54. width: 50px;
  55. border: 1px solid #eee;
  56. text-align: center;
  57. border-radius: 50%;
  58. cursor: pointer;
  59. background: #fff;
  60. }
  61. #update-theme-btn {
  62. position: fixed;
  63. top: 30px;
  64. right: 30px;
  65. z-index: 99;
  66. font-size: 20px;
  67. line-height: 50px;
  68. width: 50px;
  69. border: 1px solid #eee;
  70. text-align: center;
  71. border-radius: 50%;
  72. cursor: pointer;
  73. background: #fff;
  74. }
  75. #update-theme-btn:focus {
  76. outline: none;
  77. }
  78. #show-setting-panel:hover {
  79. background: #eee;
  80. border-color: #ddd;
  81. }
  82. #think_page_trace {
  83. display: none !important;
  84. }
  85. #think_page_trace_open {
  86. display: none !important;
  87. }
  88. </style>
  89. <script>
  90. setInterval(function () {
  91. $.ajax({
  92. url: "{:url('Theme/design')}?theme={:input('param.theme')}&status=1",
  93. type: 'post'
  94. });
  95. },2000);
  96. </script>
  97. </head>
  98. <body>
  99. <a id="show-setting-panel" title="编辑当前页" data-toggle="tooltip"><i class="fa fa-pencil"></i></a>
  100. <a id="update-theme-btn" title="刷新当前页" data-toggle="tooltip"><i class="fa fa-refresh"></i></a>
  101. <div class="setting-panel-wrap">
  102. <a href="javascript:;" id="close-setting-panel"><i class="fa fa-close"></i></a>
  103. <div id="setting-iframe-wrap">
  104. <iframe frameborder="0" id="setting-iframe"></iframe>
  105. </div>
  106. <div class="footer text-center">
  107. <a id="save-btn" class="btn btn-primary">保存</a>
  108. </div>
  109. </div>
  110. <iframe src="__ROOT__/?_design_theme={:input('param.theme')}" frameborder="0" id="simulator"></iframe>
  111. <script src="__STATIC__/js/admin.js"></script>
  112. <script>
  113. var simulator = $('#simulator').get(0).contentWindow;
  114. var $simulator = $(simulator);
  115. var $settingIframe = $('#setting-iframe');
  116. var simulatorNeedRefresh = true;
  117. $('#update-theme-btn').click(function () {
  118. simulator.location.reload(true);
  119. });
  120. $('#save-btn').click(function () {
  121. $settingIframe.get(0).contentWindow.confirm();
  122. });
  123. $('#close-setting-panel').click(function () {
  124. hideSettingPanel();
  125. });
  126. $('#show-setting-panel').click(function () {
  127. showSettingPanel();
  128. });
  129. function hideSettingPanel() {
  130. $('.setting-panel-wrap').fadeOut(function () {
  131. $('#show-setting-panel').show();
  132. });
  133. }
  134. function showSettingPanel() {
  135. $('.setting-panel-wrap').fadeIn();
  136. $('#show-setting-panel').hide();
  137. }
  138. function showDesignBtn() {
  139. if (!$('.setting-panel-wrap').is(':visible')) {
  140. $('#show-setting-panel').show();
  141. }
  142. }
  143. function hideDesignBtn() {
  144. $('.setting-panel-wrap').hide();
  145. $('#show-setting-panel').hide();
  146. }
  147. function simulatorRefresh() {
  148. if (simulatorNeedRefresh) {
  149. $settingIframe.attr('src', "{:url('Theme/fileSetting')}?theme={:input('param.theme')}&file=" + simulator._themeFile);
  150. $simulator.load(function () {
  151. $(simulator.document).on('click', 'a', function () {
  152. var target = $(this).attr('target');
  153. var href = $(this).attr('href');
  154. if (target == '_blank' && href.indexOf('http') < 0) {
  155. simulator.location.href = href;
  156. return false;
  157. }
  158. });
  159. });
  160. }
  161. simulatorNeedRefresh = true;
  162. }
  163. function afterSaveSetting() {
  164. simulatorNeedRefresh = false;
  165. simulator.location.reload();
  166. }
  167. </script>
  168. </body>
  169. </html>