financial-web/index.html

86 lines
1.7 KiB
HTML
Raw Normal View History

2024-11-11 12:04:24 +08:00
<!doctype html>
<html lang="en">
2024-12-20 15:02:51 +08:00
<head>
<meta charset="UTF-8" />
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
<meta content="webkit" name="renderer" />
<meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0"
name="viewport" />
<title>家庭理财管理系统</title>
<link href="/favicon.ico" rel="icon" />
<script>
window.process = {};
</script>
</head>
2024-11-11 12:04:24 +08:00
2024-12-20 15:02:51 +08:00
<body>
<div id="app">
<style>
html,
body,
#app {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
overflow: hidden;
}
2024-11-11 12:04:24 +08:00
2024-12-20 15:02:51 +08:00
.loader,
.loader::before,
.loader::after {
width: 2.5em;
height: 2.5em;
border-radius: 50%;
animation: load-animation 1.8s infinite ease-in-out;
animation-fill-mode: both;
}
2024-11-11 12:04:24 +08:00
2024-12-20 15:02:51 +08:00
.loader {
position: relative;
top: 0;
margin: 80px auto;
font-size: 10px;
color: #406eeb;
text-indent: -9999em;
transform: translateZ(0);
transform: translate(-50%, 0);
animation-delay: -0.16s;
}
2024-11-11 12:04:24 +08:00
2024-12-20 15:02:51 +08:00
.loader::before,
.loader::after {
position: absolute;
top: 0;
content: '';
}
2024-11-11 12:04:24 +08:00
2024-12-20 15:02:51 +08:00
.loader::before {
left: -3.5em;
animation-delay: -0.32s;
}
2024-11-11 12:04:24 +08:00
2024-12-20 15:02:51 +08:00
.loader::after {
left: 3.5em;
}
2024-11-11 12:04:24 +08:00
2024-12-20 15:02:51 +08:00
@keyframes load-animation {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
}
2024-11-11 12:04:24 +08:00
2024-12-20 15:02:51 +08:00
40% {
box-shadow: 0 2.5em 0 0;
}
}
</style>
<div class="loader"></div>
</div>
<script src="/src/main.ts" type="module"></script>
</body>
2024-11-11 12:04:24 +08:00
</html>