index.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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" src="http://api.tianditu.gov.cn/api?v=4.0&tk=e9ece4c8c4db9f3f7a7511c595eceb67"></script>
  21. <style type="text/css">
  22. .appLoading {
  23. width: 100%;
  24. height: 100%;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. }
  29. .appLoading img {
  30. display: block;
  31. -webkit-animation: rotation 2s linear infinite;
  32. animation: rotation 2s linear infinite;
  33. }
  34. @keyframes rotation {
  35. 0% {
  36. -webkit-transform: rotate(0deg);
  37. }
  38. 100% {
  39. -webkit-transform: rotate(360deg);
  40. }
  41. }
  42. </style>
  43. </head>
  44. <body style="height: 100%;">
  45. <div id="app"></div>
  46. <div class="appLoading" style="z-index: 0">
  47. <img src="mobile/assets/icon/icn_loading.png" alt=""/>
  48. </div>
  49. </body>
  50. </html>