index.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html lang="zh-cmn-Hans">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="browsermode" content="application"/>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta http-equiv="cache-control" content="no-cache">
  9. <meta http-equiv="expires" content="0">
  10. <meta http-equiv="Cache" content="no-cache">
  11. <meta name="renderer" content="webkit">
  12. <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
  13. <!-- 禁止百度转码 -->
  14. <meta http-equiv="Cache-Control" content="no-siteapp" />
  15. <!-- uc强制竖屏 -->
  16. <meta name="screen-orientation" content="portrait">
  17. <!-- QQ强制竖屏 -->
  18. <meta name="x5-orientation" content="portrait">
  19. <meta content="yes" name="apple-mobile-web-app-capable">
  20. <meta content="black" name="apple-mobile-web-app-status-bar-style">
  21. <meta name="format-detection" content="telephone=no"/>
  22. <title><%= VUE_APP_NAME %></title>
  23. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  24. <style>
  25. body {
  26. font-family: -apple-system-font, sans-serif;
  27. }
  28. .lottie-bg {
  29. position: fixed;
  30. left: 0;
  31. top: 0;
  32. background-color: #fff;
  33. width: 100%;
  34. height: 100%;
  35. z-index: 999;
  36. display: -webkit-flex;
  37. display: flex;
  38. -webkit-align-items: center;
  39. align-items: center;
  40. -webkit-justify-content: center;
  41. justify-content: center;
  42. }
  43. #lottie {
  44. width: 35%;
  45. display: block;
  46. overflow: hidden;
  47. transform: translate3d(0,0,0);
  48. margin: auto;
  49. }
  50. </style>
  51. </head>
  52. <body>
  53. <noscript>
  54. <strong>We're sorry but CRMEB doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  55. </noscript>
  56. <div id="app">
  57. <div class="lottie-bg">
  58. <div id="lottie"><img src="<%= BASE_URL %>live-logo.gif" rel="preload" style="width: 100%;"></div>
  59. </div>
  60. </div>
  61. <!-- built files will be auto injected -->
  62. </body>
  63. </html>