| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" type="image/svg+xml" href="/favicon.ico" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title><%- title %></title>
- <style>
- .first-screen-loading {
- width: 200px;
- height: 200px;
- position: fixed;
- top: 50%;
- left: 50%;
- margin-top: -100px;
- margin-left: -100px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .first-screen-loading-spinner {
- width: 36px;
- height: 36px;
- border: 3px solid #409eff;
- border-top-color: transparent;
- border-radius: 50%;
- animation: spinner 0.8s linear infinite;
- }
- .first-screen-loading-text {
- margin-top: 20px;
- color: #409eff;
- }
- @keyframes spinner {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong
- >We're sorry but <%- title %> doesn't work properly without
- JavaScript enabled. Please enable it to continue.</strong
- >
- </noscript>
- <div id="app">
- <div class="first-screen-loading">
- <div class="first-screen-loading-spinner"></div>
- <div class="first-screen-loading-text">正在加载中,请稍等 ...</div>
- </div>
- <script>
- document.oncontextmenu = (e) => e.preventDefault();
- </script>
- <script type="module" src="./src/main.ts"></script>
- </div>
- </body>
- <script>
- var _hmt = _hmt || [];
- (function() {
- var hm = document.createElement("script");
- hm.src = "https://hm.baidu.com/hm.js?f4f61fa05a26e4d1d0314cec127ce9bf";
- var s = document.getElementsByTagName("script")[0];
- s.parentNode.insertBefore(hm, s);
- })();
- </script>
- </html>
|