orchestra.html 816 B

123456789101112131415161718192021222324252627282930313233
  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"
  7. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />
  8. <title>管乐团云教练</title>
  9. <!-- <link rel="icon" href="/favicon.ico" /> -->
  10. <script src="/flexible.js" charset="UTF-8"></script>
  11. <style>
  12. #loading {
  13. position: fixed;
  14. left: 50%;
  15. top: 50%;
  16. transform: translate(-50%, -50%);
  17. display: none;
  18. }
  19. #loading.show {
  20. display: block;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="app"></div>
  26. <img id="loading" class="show" src="/loading.svg" alt="loading" />
  27. <script type="module" src="/src/page-orchestra/main.ts"></script>
  28. </body>
  29. </html>