vben
2020-10-27 9ee0a561ae3d4b11164a65d8d6813a5315065422
提交 | 用户 | age
2f6253 1 <!DOCTYPE html>
2 <html lang="en">
3   <head>
4     <meta charset="UTF-8" />
bb3b8f 5     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
N 6     <meta name="renderer" content="webkit" />
7     <meta
8       name="viewport"
9       content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0"
10     />
11     <title></title>
2f6253 12     <link rel="icon" href="/favicon.ico" />
13   </head>
14   <body>
4811cc 15     <div id="app">
V 16       <style>
17         @keyframes load {
18           0% {
19             -webkit-transform: rotate(-360deg);
20             -moz-transform: rotate(-360deg);
21             -ms-transform: rotate(-360deg);
22             -o-transform: rotate(-360deg);
23             transform: rotate(-360deg);
24           }
25
26           100% {
27             -webkit-transform: rotate(0);
28             -moz-transform: rotate(0);
29             -ms-transform: rotate(0);
30             -o-transform: rotate(0);
31             transform: rotate(0);
32           }
33         }
34
35         .g-loading {
36           -webkit-animation: load 2s linear infinite;
37           -moz-animation: load 2s linear infinite;
38           -ms-animation: load 2s linear infinite;
39           -o-animation: load 2s linear infinite;
40           animation: load 2s linear infinite;
41           -webkit-transform-origin: center center;
42           -moz-transform-origin: center center;
43           -ms-transform-origin: center center;
44           -o-transform-origin: center center;
45           transform-origin: center center;
46         }
47
48         .app-loading {
49           width: 100%;
50           height: 100%;
bb3b8f 51           background: rgba(255, 255, 255, 0, 1);
4811cc 52         }
V 53
54         .app-loading .app-loading-wrap {
55           position: absolute;
56           top: 45%;
57           left: 50%;
58           width: 64px;
59           -ms-transform: translate3d(-50%, -50%, 0);
60           -moz-transform: translate3d(-50%, -50%, 0);
61           -webkit-transform: translate3d(-50%, -50%, 0);
62           -o-transform: translate3d(-50%, -50%, 0);
63           transform: translate3d(-50%, -50%, 0);
64         }
65
66         .app-loading .app-loading-wrap img.logo {
67           margin-bottom: 20px;
68           margin-left: -20px;
69         }
70
71         .app-loading .app-loading-wrap .app-loading__tip {
72           display: block;
73           margin-top: 4px;
74           font-size: 13px;
75           color: #303133;
76           text-align: center;
77         }
78       </style>
79       <section class="app-loading">
80         <section class="app-loading-wrap">
81           <img src="./resource/img/logo.png" class="logo" alt="Logo" />
82           <img src="./resource/img/loading.svg" alt="" class="g-loading" />
83         </section>
84       </section>
85     </div>
2f6253 86     <script type="module" src="/src/main.ts"></script>
87   </body>
88 </html>