vue-pure-admin2/index.html

102 lines
2.3 KiB
HTML
Raw Normal View History

2021-03-01 15:26:05 +08:00
<!DOCTYPE html>
<html lang="en">
2021-07-22 11:33:45 +08:00
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2021-10-24 11:53:43 +08:00
<title>vue-pure-admin</title>
2021-09-17 10:29:59 +08:00
<script src="/sortable.min.js"></script>
2021-09-29 02:21:09 +08:00
<script>
window.process = {};
2021-07-22 11:33:45 +08:00
</script>
</head>
2021-03-01 15:26:05 +08:00
2021-07-22 11:33:45 +08:00
<body>
<div id="app">
<style>
html,
2022-03-02 13:56:07 +08:00
body,
#app {
2021-07-22 11:33:45 +08:00
width: 100%;
height: 100%;
display: flex;
2022-03-02 13:56:07 +08:00
position: relative;
2021-07-22 11:33:45 +08:00
justify-content: center;
align-items: center;
overflow: hidden;
2021-04-11 01:51:10 +08:00
}
2021-04-03 14:20:43 +08:00
2022-01-07 14:45:21 +08:00
.loader,
.loader:before,
.loader:after {
border-radius: 50%;
width: 2.5em;
height: 2.5em;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation: loadAnimation 1.8s infinite ease-in-out;
animation: loadAnimation 1.8s infinite ease-in-out;
2021-04-11 01:51:10 +08:00
}
2021-04-03 14:20:43 +08:00
2022-01-07 14:45:21 +08:00
.loader {
color: #406eeb;
font-size: 10px;
margin: 80px auto;
position: relative;
text-indent: -9999em;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
2022-03-02 13:56:07 +08:00
top: 0;
transform: translate(-50%, 0);
2021-08-27 00:45:40 +08:00
}
2022-01-07 14:45:21 +08:00
.loader:before,
.loader:after {
content: "";
2021-07-22 11:33:45 +08:00
position: absolute;
top: 0;
2021-04-03 14:20:43 +08:00
}
2022-01-07 14:45:21 +08:00
.loader:before {
left: -3.5em;
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
2021-03-01 15:26:05 +08:00
}
2022-01-07 14:45:21 +08:00
.loader:after {
left: 3.5em;
2021-03-01 15:26:05 +08:00
}
2021-08-27 00:45:40 +08:00
2022-01-07 14:45:21 +08:00
@-webkit-keyframes loadAnimation {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
}
2021-08-27 00:45:40 +08:00
2022-01-07 14:45:21 +08:00
40% {
box-shadow: 0 2.5em 0 0;
}
}
2021-08-27 00:45:40 +08:00
2022-01-07 14:45:21 +08:00
@keyframes loadAnimation {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
2021-08-27 00:45:40 +08:00
}
2022-01-07 14:45:21 +08:00
40% {
box-shadow: 0 2.5em 0 0;
}
}
</style>
2022-03-02 13:56:07 +08:00
<div class="loader"></div>
2022-01-07 14:45:21 +08:00
</div>
2021-07-22 11:33:45 +08:00
<script type="module" src="/src/main.ts"></script>
</body>
2021-07-05 17:39:00 +08:00
</html>