instrument.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport"
  6. content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />
  7. <title>AI学练</title>
  8. <link rel="icon" href="/favicon.ico?v=1" />
  9. <script src="/flexible.js" charset="UTF-8"></script>
  10. <style>
  11. #loading {
  12. position: fixed;
  13. left: 50%;
  14. top: 50%;
  15. transform: translate(-50%, -50%);
  16. display: none;
  17. }
  18. #loading.show {
  19. display: block;
  20. }
  21. </style>
  22. <script>
  23. function _postMessage(data, callback) {
  24. const instance = window.COLEXIU || (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.COLEXIU)
  25. if (instance) {
  26. instance.postMessage(JSON.stringify(data))
  27. }
  28. }
  29. // APP的全屏loading动画
  30. if (!location.href.includes('iscurseplay=play') && !location.href.includes('isPreView=true') && !location.href.includes("simple-detail")) {
  31. _postMessage({
  32. api: 'cloudLoading',
  33. content: {
  34. show: true,
  35. type: 'fullscreen',
  36. },
  37. })
  38. }
  39. </script>
  40. </head>
  41. <body>
  42. <div id="app"></div>
  43. <!-- <img id="loading" class="show" src="/loading.svg" alt="loading" /> -->
  44. <!-- <script>
  45. // 处理课堂乐器老师端打开听音练习时去掉加载动画
  46. if (location.href.indexOf('view-figner') >= 0 && location.href.indexOf('platform=pc') >= 0 && location.href.indexOf('linkSource=class') < 0 && !location.href.includes("simple-detail")) {
  47. var _loading = document.getElementById("loading");
  48. _loading && document.body.removeChild(_loading);
  49. }
  50. </script> -->
  51. <script type="module" src="/src/page-instrument/main.ts"></script>
  52. <!-- <script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
  53. <script>
  54. // VConsole will be exported to `window.VConsole` by default.
  55. var vConsole = new window.VConsole();
  56. </script> -->
  57. </body>
  58. </html>