index.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>惠州市就业驿站管理系统</title>
  6. <base href="/"/>
  7. <meta name="color-scheme" content="light dark"/>
  8. <meta
  9. name="viewport"
  10. content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
  11. />
  12. <meta name="format-detection" content="telephone=no"/>
  13. <meta name="msapplication-tap-highlight" content="no"/>
  14. <link rel="shortcut icon" type="image/png" href="<%= BASE_URL %>assets/icon/favicon.png"/>
  15. <!-- add to homescreen for ios -->
  16. <meta name="apple-mobile-web-app-capable" content="yes"/>
  17. <meta name="apple-mobile-web-app-title" content="Ionic App"/>
  18. <meta name="apple-mobile-web-app-status-bar-style" content="black"/>
  19. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
  20. <script type="text/javascript"
  21. src="https://api.tianditu.gov.cn/api?v=4.0&tk=d1ba4200b604530ba218d9bc06f296b2"></script>
  22. <style type="text/css">
  23. .appLoading {
  24. width: 100%;
  25. height: 100%;
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. }
  30. .appLoading img {
  31. display: block;
  32. -webkit-animation: rotation 2s linear infinite;
  33. animation: rotation 2s linear infinite;
  34. }
  35. @keyframes rotation {
  36. 0% {
  37. -webkit-transform: rotate(0deg);
  38. }
  39. 100% {
  40. -webkit-transform: rotate(360deg);
  41. }
  42. }
  43. </style>
  44. </head>
  45. <body style="height: 100%;">
  46. <div id="app"></div>
  47. <div class="appLoading" style="z-index: 0">
  48. <img src="mobile/assets/icon/icn_loading.png" alt=""/>
  49. </div>
  50. </body>
  51. </html>