bunny-admin-element-thin-i18n/index.html

88 lines
2.0 KiB
HTML
Raw Normal View History

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