index.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>动画管理工具</title>
  7. <link rel="icon" type="image/png" href="static/favicon.png" />
  8. <link rel="stylesheet" href="css/index.css" />
  9. <link rel="stylesheet" href="css/alert-view.css" />
  10. <link rel="stylesheet" href="css/confirm-view.css" />
  11. <link rel="stylesheet" href="css/hint-view.css" />
  12. </head>
  13. <body>
  14. <div class="app-root">
  15. <!-- 导航栏 iframe -->
  16. <iframe id="navigationFrame" src="page/navigation/navigation.html" frameborder="0"></iframe>
  17. <!-- 子页面容器 -->
  18. <section class="page-container">
  19. <iframe id="pageFrame" src="page/store/store.html" frameborder="0"></iframe>
  20. </section>
  21. </div>
  22. <!-- 全局 Loading 遮罩 -->
  23. <div class="global-loading-overlay" id="globalLoadingOverlay">
  24. <div class="global-loading-content">
  25. <div class="global-loading-spinner"></div>
  26. <p class="global-loading-text">正在处理...</p>
  27. </div>
  28. </div>
  29. <!-- 全局文字提示 -->
  30. <div class="global-alert" id="globalAlert">
  31. <div class="alert-message" id="alertMessage"></div>
  32. </div>
  33. <!-- 全局提示遮罩层(用于服务器断连重连) -->
  34. <div class="alert-overlay" id="alertOverlay">
  35. <div class="alert-content">
  36. <div class="alert-spinner"></div>
  37. <div class="alert-message" id="alertOverlayMessage">服务器断开连接,正在重连...</div>
  38. </div>
  39. </div>
  40. <!-- 导出动画弹出框 iframe -->
  41. <iframe id="exportViewFrame" src="page/export/export-view.html?v=4" frameborder="0" style="display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999999; border: none; pointer-events: none; visibility: hidden;"></iframe>
  42. <!-- AI生图弹出框 iframe -->
  43. <iframe id="aiGenerateViewFrame" src="page/ai-generate/ai-generate-view.html" frameborder="0" style="display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999999; border: none;"></iframe>
  44. <!-- 登录/注册弹出框 iframe -->
  45. <iframe id="loginViewFrame" src="page/login/login.html" frameborder="0" style="display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000001; border: none; background: transparent;"></iframe>
  46. <!-- 支付界面 iframe -->
  47. <iframe id="payViewFrame" src="page/pay-view/pay-view.html" frameborder="0" style="display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000003; border: none; background: transparent;"></iframe>
  48. <!-- 充值界面 iframe -->
  49. <iframe id="rechargeViewFrame" src="page/recharge-view/recharge-view.html" frameborder="0" style="display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000004; border: none; background: transparent;"></iframe>
  50. <script src="js/alert-view.js"></script>
  51. <script src="js/export-view-manager.js"></script>
  52. <script src="js/hint-view.js"></script>
  53. <script src="js/index.js"></script>
  54. <script src="js/confirm-view.js"></script>
  55. </body>
  56. </html>