index.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <!DOCTYPE html>
  2. <html lang="zh-cmn-Hans" id="htmlRoot" data-theme="light">
  3. <head>
  4. <link rel="icon" href="/favicon.ico" />
  5. <meta charset="UTF-8">
  6. <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
  7. <meta content="webkit" name="renderer" />
  8. <meta name="viewport" content="user-scalable=0,width=device-width, initial-scale=1.0">
  9. <meta http-equiv="cache-control" content="no-cache,no-store, must-revalidate" />
  10. <meta http-equiv="pragma" content="no-cache" />
  11. <meta http-equiv="Expires" content="0" />
  12. <meta name="referrer" content="no-referrer" />
  13. <title>
  14. 音乐教育总控管理平台
  15. </title>
  16. </head>
  17. <body>
  18. <div id="appProvider" style="display: none"></div>
  19. <div id="app">
  20. <style>
  21. .first-loading-wrap {
  22. display: flex;
  23. width: 100%;
  24. height: 100vh;
  25. justify-content: center;
  26. align-items: center;
  27. flex-direction: column;
  28. }
  29. .first-loading-wrap>h1 {
  30. font-size: 128px
  31. }
  32. .first-loading-wrap .loading-wrap {
  33. padding: 98px;
  34. display: flex;
  35. justify-content: center;
  36. align-items: center
  37. }
  38. .dot {
  39. animation: antRotate 1.2s infinite linear;
  40. transform: rotate(45deg);
  41. position: relative;
  42. display: inline-block;
  43. font-size: 32px;
  44. width: 32px;
  45. height: 32px;
  46. box-sizing: border-box
  47. }
  48. .dot i {
  49. width: 14px;
  50. height: 14px;
  51. position: absolute;
  52. display: block;
  53. background-color: #1890ff;
  54. border-radius: 100%;
  55. transform: scale(.75);
  56. transform-origin: 50% 50%;
  57. opacity: .3;
  58. animation: antSpinMove 1s infinite linear alternate
  59. }
  60. .dot i:nth-child(1) {
  61. top: 0;
  62. left: 0
  63. }
  64. .dot i:nth-child(2) {
  65. top: 0;
  66. right: 0;
  67. -webkit-animation-delay: .4s;
  68. animation-delay: .4s
  69. }
  70. .dot i:nth-child(3) {
  71. right: 0;
  72. bottom: 0;
  73. -webkit-animation-delay: .8s;
  74. animation-delay: .8s
  75. }
  76. .dot i:nth-child(4) {
  77. bottom: 0;
  78. left: 0;
  79. -webkit-animation-delay: 1.2s;
  80. animation-delay: 1.2s
  81. }
  82. @keyframes antRotate {
  83. to {
  84. -webkit-transform: rotate(405deg);
  85. transform: rotate(405deg)
  86. }
  87. }
  88. @-webkit-keyframes antRotate {
  89. to {
  90. -webkit-transform: rotate(405deg);
  91. transform: rotate(405deg)
  92. }
  93. }
  94. @keyframes antSpinMove {
  95. to {
  96. opacity: 1
  97. }
  98. }
  99. @-webkit-keyframes antSpinMove {
  100. to {
  101. opacity: 1
  102. }
  103. }
  104. </style>
  105. <div class="first-loading-wrap">
  106. <div class="loading-wrap">
  107. <span class="dot dot-spin"><i></i><i></i><i></i><i></i></span>
  108. </div>
  109. </div>
  110. </div>
  111. <script>var globalThis = window;</script>
  112. <script type="text/javascript">
  113. // var url = window.location.origin + '/_AMapService'
  114. window._AMapSecurityConfig = {
  115. serviceHost: 'https://gym.lexiaoya.cn/_AMapService'
  116. }
  117. // window._AMapSecurityConfig = {
  118. // serviceHost: 'http://192.168.3.120:8001/_AMapService',
  119. // // 例如 :serviceHost:'http://1.1.1.1:80/_AMapService',
  120. // }
  121. </script>
  122. <script src="/src/main.ts" type="module"></script>
  123. <!-- <script type="text/javascript"
  124. src="https://cdnjs.cloudflare.com/ajax/libs/mammoth/1.4.21/mammoth.browser.min.js"></script> -->
  125. </body>
  126. </html>