| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="renderer" content="webkit">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <script src="/js/jessibuca-pro/jessibuca-pro.js"></script>
- <script type="text/javascript" src="/js/EasyWasmPlayer.js"></script>
- <!-- 百度地图 -->
- <script src="https://mp-bd83e627-0227-46f3-aef3-95bef99ce553.cdn.bspapp.com/mapvgl.min.js"></script>
- <script src="https://api.map.baidu.com/api?v=2.0&type=webgl&ak=9oBcHDQqVQwxKJPySUa404jj4HcFwNdL"></script>
- <!-- 高德地图 -->
- <script language="javascript"
- src="https://webapi.amap.com/maps?v=2.0&key=99e2186c28a9705424380db0d6d243f1&plugin=AMap.ControlBar,AMap.ToolBar"></script>
- <title>
- <%= webpackConfig.name %>
- </title>
- <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
- <style>
- html,
- body,
- #app {
- height: 100%;
- margin: 0px;
- padding: 0px;
- }
- .chromeframe {
- margin: 0.2em 0;
- background: #ccc;
- color: #000;
- padding: 0.2em 0;
- }
- #loader-wrapper {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 999999;
- }
- #loader-wrapper {
- background: #fff;
- }
- .loader-logo {
- display: block;
- position: fixed;
- left: 50%;
- top: 40%;
- transform: translate(-50%, -50%);
- width: 220px;
- height: 60px;
- z-index: 3;
- }
- .loader-icon {
- display: block;
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- width: 160px;
- height: 120px;
- z-index: 1;
- }
- #loader-wrapper .load_title {
- font-family: 'Open Sans';
- color: #303133;
- font-size: 19px;
- width: 100%;
- text-align: center;
- z-index: 9999;
- position: absolute;
- top: 56%;
- opacity: 1;
- line-height: 30px;
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: 550;
- }
- #loader-wrapper .load_title .load-point {
- background-color: #303133;
- width: 8px;
- height: 8px;
- border-radius: 50%;
- margin-left: 10px;
- }
- @keyframes point2 {
- 0% {
- opacity: 0;
- }
- 32% {
- opacity: 0;
- }
- 33% {
- opacity: 1;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes point3 {
- 0% {
- opacity: 0;
- }
- 66% {
- opacity: 0;
- }
- 67% {
- opacity: 1;
- }
- 100% {
- opacity: 1;
- }
- }
- #loader-wrapper .load_title .load-point.point2 {
- animation: point2 3s linear infinite;
- }
- #loader-wrapper .load_title .load-point.point3 {
- animation: point3 3s linear infinite;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <div id="loader-wrapper">
- <img class="loader-logo" src="./loading-logo.png"></img>
- <img class="loader-icon" src="./loading.gif"></img>
- <div class="load_title">正在努力加载中,请稍后</div>
- </div>
- </div>
- </body>
- </html>
|