index.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="icon" href="/favicon.ico">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  7. <meta name="renderer" content="webkit">
  8. <meta name="force-rendering" content="webkit" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <meta name="description" content="ppt编辑器" />
  11. <meta name="keywords" content="ppt,powerpoint,office powerpoint,在线ppt,幻灯片,演示文稿,ppt在线制作,Vue3,TypeScript" />
  12. <title>%VITE_APP_TITLE%</title>
  13. <style>
  14. .first-screen-loading {
  15. width: 200px;
  16. height: 200px;
  17. position: fixed;
  18. top: 50%;
  19. left: 50%;
  20. margin-top: -100px;
  21. margin-left: -100px;
  22. display: flex;
  23. flex-direction: column;
  24. justify-content: center;
  25. align-items: center;
  26. }
  27. .first-screen-loading-spinner {
  28. width: 36px;
  29. height: 36px;
  30. border: 3px solid #d14424;
  31. border-top-color: transparent;
  32. border-radius: 50%;
  33. animation: spinner .8s linear infinite;
  34. }
  35. .first-screen-loading-text {
  36. margin-top: 20px;
  37. color: #d14424;
  38. }
  39. @keyframes spinner {
  40. 0% {
  41. transform: rotate(0deg);
  42. }
  43. 100% {
  44. transform: rotate(360deg);
  45. }
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <div id="app">
  51. <div class="first-screen-loading">
  52. <div class="first-screen-loading-spinner"></div>
  53. <div class="first-screen-loading-text">正在加载中,请稍等 ...</div>
  54. </div>
  55. </div>
  56. <script type="module" src="/src/main.ts"></script>
  57. </body>
  58. <script>
  59. document.oncontextmenu = e => e.preventDefault()
  60. </script>
  61. </html>