index.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>油田勘探AI检索系统</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. <style type="text/css">
  21. .appLoading {
  22. width: 100%;
  23. height: 100%;
  24. display: flex;
  25. justify-content: center;
  26. align-items: center;
  27. }
  28. .appLoading img {
  29. display: block;
  30. -webkit-animation: rotation 2s linear infinite;
  31. animation: rotation 2s linear infinite;
  32. }
  33. @keyframes rotation {
  34. 0% {
  35. -webkit-transform: rotate(0deg);
  36. }
  37. 100% {
  38. -webkit-transform: rotate(360deg);
  39. }
  40. }
  41. </style>
  42. </head>
  43. <body style="height: 100%;">
  44. <div id="app"></div>
  45. <div class="appLoading" style="z-index: 0">
  46. <img src="mobile/assets/icon/icn_loading.png" alt=""/>
  47. </div>
  48. </body>
  49. </html>