沙钢智慧能源系统前端代码
dengzedong
4 天以前 3b1535dba76304c143502cf2b142f3479d6b6c82
提交 | 用户 | 时间
314507 1 <!DOCTYPE html>
H 2 <html lang="en">
3   <head>
4     <meta charset="UTF-8" />
5     <link rel="icon" href="/favicon.ico" />
6     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
7     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8     <meta
9       name="keywords"
10       content="沙钢智慧能源平台 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台管理系统!"
11     />
12     <meta
13       name="description"
14       content="沙钢智慧能源平台 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台管理系统!"
15     />
16     <title>沙钢智慧能源平台</title>
17     <script type="module" crossorigin src="/assets/index-CHTXMeh8.js"></script>
18     <link rel="stylesheet" crossorigin href="/assets/index-BIBV9CL6.css">
19   </head>
20   <body>
21     <div id="app">
22       <style>
23         .app-loading {
24           display: flex;
25           width: 100%;
26           height: 100%;
27           justify-content: center;
28           align-items: center;
29           flex-direction: column;
30           background: #f0f2f5;
31         }
32
33         .app-loading .app-loading-wrap {
34           position: absolute;
35           top: 50%;
36           left: 50%;
37           display: flex;
38           transform: translate3d(-50%, -50%, 0);
39           justify-content: center;
40           align-items: center;
41           flex-direction: column;
42         }
43
44         .app-loading .app-loading-title {
45           margin-bottom: 30px;
46           font-size: 20px;
47           font-weight: bold;
48           text-align: center;
49         }
50
51         .app-loading .app-loading-logo {
52           width: 100px;
53           margin: 0 auto 15px auto;
54         }
55
56         .app-loading .app-loading-item {
57           position: relative;
58           display: inline-block;
59           width: 60px;
60           height: 60px;
61           vertical-align: middle;
62           border-radius: 50%;
63         }
64
65         .app-loading .app-loading-outter {
66           position: absolute;
67           width: 100%;
68           height: 100%;
69           border: 4px solid #2d8cf0;
70           border-bottom: 0;
71           border-left-color: transparent;
72           border-radius: 50%;
73           animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
74         }
75
76         .app-loading .app-loading-inner {
77           position: absolute;
78           top: calc(50% - 20px);
79           left: calc(50% - 20px);
80           width: 40px;
81           height: 40px;
82           border: 4px solid #87bdff;
83           border-right: 0;
84           border-top-color: transparent;
85           border-radius: 50%;
86           animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
87         }
88
89         @keyframes loader-outter {
90           0% {
91             transform: rotate(0deg);
92           }
93
94           100% {
95             transform: rotate(360deg);
96           }
97         }
98
99         @keyframes loader-inner {
100           0% {
101             transform: rotate(0deg);
102           }
103
104           100% {
105             transform: rotate(-360deg);
106           }
107         }
108       </style>
109       <div class="app-loading">
110         <div class="app-loading-wrap">
111           <div class="app-loading-title">
112             <img src="/logo.gif" class="app-loading-logo" alt="Logo" />
113             <div class="app-loading-title">沙钢智慧能源平台</div>
114           </div>
115           <div class="app-loading-item">
116             <div class="app-loading-outter"></div>
117             <div class="app-loading-inner"></div>
118           </div>
119         </div>
120       </div>
121     </div>
122
123   </body>
124 </html>