index.html 856 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <script>
  6. var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
  7. CSS.supports('top: constant(a)'))
  8. document.write(
  9. '<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
  10. (coverSupport ? ', viewport-fit=cover' : '') + '" />')
  11. </script>
  12. <title></title>
  13. <!--preload-links-->
  14. <!--app-context-->
  15. <style>
  16. html::-webkit-scrollbar {
  17. display: none;
  18. width: 0 !important;
  19. height: 0 !important;
  20. -webkit-appearance: none;
  21. background: transparent;
  22. }
  23. html {
  24. overflow-y: auto;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="app"><!--app-html--></div>
  30. <script type="module" src="/main.js"></script>
  31. </body>
  32. </html>