index.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html>
  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. .lottie-bg {
  26. position: fixed;
  27. left: 0;
  28. top: 0;
  29. background-color: #fff;
  30. width: 100%;
  31. height: 100%;
  32. z-index: 999;
  33. display: -webkit-flex;
  34. display: flex;
  35. -webkit-align-items: center;
  36. align-items: center;
  37. -webkit-justify-content: center;
  38. justify-content: center;
  39. }
  40. #lottie {
  41. width: 35%;
  42. display: block;
  43. overflow: hidden;
  44. transform: translate3d(0,0,0);
  45. margin: auto;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <noscript>
  51. <strong>We're sorry but CRMEB doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  52. </noscript>
  53. <div id="app">
  54. <div class="lottie-bg">
  55. <div id="lottie"><img src="<%= BASE_URL %>live-logo.gif" rel="preload" style="width: 100%;"></div>
  56. </div>
  57. </div>
  58. <!-- built files will be auto injected -->
  59. </body>
  60. </html>