| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <!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">
- <title><%= webpackConfig.name %></title>
- <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
- <script type="text/javascript">
- window._AMapSecurityConfig = {
- securityJsCode: "YOUR_SECURITY_CODE", // 如果使用安全密钥
- };
- </script>
- <script type="text/javascript" src="https://webapi.amap.com/maps?v=2.0&key=YOUR_AMAP_KEY&plugin=AMap.Scale,AMap.OverView,AMap.ToolBar,AMap.MapType"></script>
- <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;
- background:
- radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.4) 0%, transparent 60%),
- radial-gradient(circle at 80% 70%, rgba(102, 187, 106, 0.4) 0%, transparent 60%),
- radial-gradient(circle at 40% 80%, rgba(76, 175, 80, 0.3) 0%, transparent 50%),
- radial-gradient(circle at 60% 20%, rgba(129, 199, 132, 0.3) 0%, transparent 50%),
- linear-gradient(135deg, #2E7D32 0%, #4CAF50 25%, #66BB6A 50%, #4CAF50 75%, #388E3C 100%);
- overflow: hidden;
- }
-
- #loader-wrapper::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background:
- repeating-linear-gradient(
- 45deg,
- transparent,
- transparent 3px,
- rgba(255, 255, 255, 0.02) 3px,
- rgba(255, 255, 255, 0.02) 6px
- );
- animation: shimmer 4s ease-in-out infinite;
- }
-
- #loader-wrapper::after {
- content: '';
- position: absolute;
- top: -25%;
- left: -25%;
- width: 150%;
- height: 150%;
- background: radial-gradient(
- circle,
- rgba(255, 255, 255, 0.08) 0%,
- rgba(255, 255, 255, 0.04) 30%,
- transparent 60%
- );
- animation: rotate 12s linear infinite;
- }
- #loader {
- display: block;
- position: relative;
- left: 50%;
- top: 50%;
- width: 150px;
- height: 150px;
- margin: -75px 0 0 -75px;
- border-radius: 50%;
- border: 4px solid transparent;
- border-top: 4px solid rgba(255, 255, 255, 0.9);
- border-right: 4px solid rgba(255, 255, 255, 0.3);
- border-bottom: 4px solid rgba(255, 255, 255, 0.1);
- border-left: 4px solid rgba(255, 255, 255, 0.6);
- box-shadow:
- 0 0 30px rgba(76, 175, 80, 0.4),
- inset 0 0 20px rgba(255, 255, 255, 0.1),
- 0 0 60px rgba(76, 175, 80, 0.2);
- backdrop-filter: blur(2px);
- -webkit-animation: spin 2s linear infinite;
- -ms-animation: spin 2s linear infinite;
- -moz-animation: spin 2s linear infinite;
- -o-animation: spin 2s linear infinite;
- animation: spin 2s linear infinite;
- z-index: 1001;
- }
- #loader:before {
- content: "";
- position: absolute;
- top: 5px;
- left: 5px;
- right: 5px;
- bottom: 5px;
- border-radius: 50%;
- border: 3px solid transparent;
- border-top-color: rgba(255, 255, 255, 0.7);
- -webkit-animation: spin 3s linear infinite;
- -moz-animation: spin 3s linear infinite;
- -o-animation: spin 3s linear infinite;
- -ms-animation: spin 3s linear infinite;
- animation: spin 3s linear infinite;
- }
- #loader:after {
- content: "";
- position: absolute;
- top: 15px;
- left: 15px;
- right: 15px;
- bottom: 15px;
- border-radius: 50%;
- border: 3px solid transparent;
- border-top-color: rgba(255, 255, 255, 0.5);
- -moz-animation: spin 1.5s linear infinite;
- -o-animation: spin 1.5s linear infinite;
- -ms-animation: spin 1.5s linear infinite;
- -webkit-animation: spin 1.5s linear infinite;
- animation: spin 1.5s linear infinite;
- }
- @-webkit-keyframes spin {
- 0% {
- -webkit-transform: rotate(0deg);
- -ms-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- -ms-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @keyframes spin {
- 0% {
- -webkit-transform: rotate(0deg);
- -ms-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- -ms-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @keyframes shimmer {
- 0%, 100% {
- opacity: 0.3;
- transform: translateX(-100%);
- }
- 50% {
- opacity: 0.8;
- transform: translateX(100%);
- }
- }
-
- @keyframes rotate {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
-
- @keyframes pulse {
- 0%, 100% {
- opacity: 0.6;
- transform: scale(1);
- }
- 50% {
- opacity: 1;
- transform: scale(1.05);
- }
- }
- .loaded #loader {
- opacity: 0;
- -webkit-transition: all 0.3s ease-out;
- transition: all 0.3s ease-out;
- }
- .loaded #loader-wrapper {
- visibility: hidden;
- -webkit-transform: translateY(-100%);
- -ms-transform: translateY(-100%);
- transform: translateY(-100%);
- -webkit-transition: all 0.3s 1s ease-out;
- transition: all 0.3s 1s ease-out;
- }
- .no-js #loader-wrapper {
- display: none;
- }
- .no-js h1 {
- color: #222222;
- }
- #loader-wrapper .load_title {
- font-family: 'Open Sans', 'Microsoft YaHei', sans-serif;
- color: #FFF;
- font-size: 20px;
- font-weight: 600;
- width: 100%;
- text-align: center;
- z-index: 9999999999999;
- position: absolute;
- top: 60%;
- opacity: 1;
- line-height: 30px;
- text-shadow:
- 0 2px 4px rgba(0, 0, 0, 0.3),
- 0 0 20px rgba(76, 175, 80, 0.6),
- 0 0 40px rgba(76, 175, 80, 0.3);
- letter-spacing: 1px;
- animation: pulse 2s ease-in-out infinite;
- }
- #loader-wrapper .load_title span {
- font-weight: normal;
- font-style: italic;
- font-size: 14px;
- color: rgba(255, 255, 255, 0.8);
- opacity: 0.7;
- display: block;
- margin-top: 8px;
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
- }
- </style>
- </head>
- <body>
- <div id="app">
- <div id="loader-wrapper">
- <div id="loader"></div>
- <div class="load_title">正在加载系统资源,请耐心等待</div>
- </div>
- </div>
- </body>
- </html>
|