index-colexiu.html 628 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" type="image/svg+xml" href="/vite.svg" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>酷乐秀</title>
  8. <style>
  9. #loading {
  10. position: fixed;
  11. left: 50%;
  12. top: 50%;
  13. transform: translate(-50%, -50%);
  14. display: none;
  15. }
  16. #loading.show {
  17. display: block;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="app"></div>
  23. <img id="loading" class="show" src="/loading.svg" alt="loading" />
  24. <script type="module" src="/src/page-colexiu/main.ts"></script>
  25. </body>
  26. </html>