index.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <!DOCTYPE html>
  2. <html lang="zh_CN" id="htmlRoot">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  6. <meta name="renderer" content="webkit" />
  7. <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" />
  8. <title><%= title %></title>
  9. <link rel="icon" href="/logo.png" />
  10. <!-- 全局配置 -->
  11. <script>
  12. window._CONFIG = {};
  13. </script>
  14. <script src="/js/liveplayer-lib.min.js"></script>
  15. </head>
  16. <body>
  17. <script>
  18. (() => {
  19. var htmlRoot = document.getElementById('htmlRoot');
  20. var theme = window.localStorage.getItem('__APP__DARK__MODE__');
  21. if (htmlRoot && theme) {
  22. htmlRoot.setAttribute('data-theme', theme);
  23. theme = htmlRoot = null;
  24. }
  25. })();
  26. </script>
  27. <div id="app">
  28. <style>
  29. html[data-theme='dark'] .app-loading {
  30. background-color: #2c344a;
  31. }
  32. html[data-theme='dark'] .app-loading .app-loading-title {
  33. color: rgba(255, 255, 255, 0.85);
  34. }
  35. .app-loading {
  36. display: flex;
  37. width: 100%;
  38. height: 100%;
  39. justify-content: center;
  40. align-items: center;
  41. flex-direction: column;
  42. background-color: #f4f7f9;
  43. }
  44. .app-loading .app-loading-wrap {
  45. position: absolute;
  46. top: 50%;
  47. left: 50%;
  48. display: flex;
  49. -webkit-transform: translate3d(-50%, -50%, 0);
  50. transform: translate3d(-50%, -50%, 0);
  51. justify-content: center;
  52. align-items: center;
  53. flex-direction: column;
  54. }
  55. .app-loading .dots {
  56. display: flex;
  57. padding: 98px;
  58. justify-content: center;
  59. align-items: center;
  60. }
  61. .app-loading .app-loading-title {
  62. display: flex;
  63. margin-top: 30px;
  64. font-size: 30px;
  65. color: rgba(0, 0, 0, 0.85);
  66. justify-content: center;
  67. align-items: center;
  68. }
  69. .app-loading .app-loading-logo {
  70. display: block;
  71. width: 90px;
  72. margin: 0 auto;
  73. margin-bottom: 20px;
  74. }
  75. .dot {
  76. position: relative;
  77. display: inline-block;
  78. width: 48px;
  79. height: 48px;
  80. margin-top: 30px;
  81. font-size: 32px;
  82. transform: rotate(45deg);
  83. box-sizing: border-box;
  84. animation: antRotate 1.2s infinite linear;
  85. }
  86. .dot i {
  87. position: absolute;
  88. display: block;
  89. width: 20px;
  90. height: 20px;
  91. background-color: #0065cc;
  92. border-radius: 100%;
  93. opacity: 0.3;
  94. transform: scale(0.75);
  95. animation: antSpinMove 1s infinite linear alternate;
  96. transform-origin: 50% 50%;
  97. }
  98. .dot i:nth-child(1) {
  99. top: 0;
  100. left: 0;
  101. }
  102. .dot i:nth-child(2) {
  103. top: 0;
  104. right: 0;
  105. -webkit-animation-delay: 0.4s;
  106. animation-delay: 0.4s;
  107. }
  108. .dot i:nth-child(3) {
  109. right: 0;
  110. bottom: 0;
  111. -webkit-animation-delay: 0.8s;
  112. animation-delay: 0.8s;
  113. }
  114. .dot i:nth-child(4) {
  115. bottom: 0;
  116. left: 0;
  117. -webkit-animation-delay: 1.2s;
  118. animation-delay: 1.2s;
  119. }
  120. @keyframes antRotate {
  121. to {
  122. -webkit-transform: rotate(405deg);
  123. transform: rotate(405deg);
  124. }
  125. }
  126. @-webkit-keyframes antRotate {
  127. to {
  128. -webkit-transform: rotate(405deg);
  129. transform: rotate(405deg);
  130. }
  131. }
  132. @keyframes antSpinMove {
  133. to {
  134. opacity: 1;
  135. }
  136. }
  137. @-webkit-keyframes antSpinMove {
  138. to {
  139. opacity: 1;
  140. }
  141. }
  142. </style>
  143. <div class="app-loading">
  144. <div class="app-loading-wrap">
  145. <img src="/resource/img/logo.png" class="app-loading-logo" alt="Logo" />
  146. <div class="app-loading-dots">
  147. <span class="dot dot-spin"><i></i><i></i><i></i><i></i></span>
  148. </div>
  149. <div class="app-loading-title"><%= title %></div>
  150. </div>
  151. </div>
  152. </div>
  153. <script type="module" src="/src/main.ts"></script>
  154. <script type="module" src="/src/utils/threejs/main.worker.ts"></script>
  155. </body>
  156. </html>