instrument.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. console.info(location.href)
  30. if (!location.href.includes('iscurseplay=play')) {
  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 type="module" src="/src/page-instrument/main.ts"></script>
  45. </body>
  46. </html>