index.html 632 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="icon" href="./favicon.ico" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>管乐迷</title>
  8. <style>
  9. #loading{
  10. position: fixed;
  11. left: 50%;
  12. top: 50%;
  13. transform: translate(-50%, -50%);
  14. visibility: hidden;
  15. opacity: 0;
  16. transition: opacity .3s;
  17. }
  18. #loading.show {
  19. visibility: visible;
  20. opacity: 1;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="app"></div>
  26. <img id="loading" class="show" src="./loading.svg" alt="loading"/>
  27. 系统维护中
  28. </body>
  29. </html>