qihang-ecom-erp-open/vue/public/index.html

97 lines
2.0 KiB
HTML
Raw Permalink Normal View History

2025-09-14 18:30:44 +08:00
<!doctype html>
<html lang="en">
2024-03-15 16:39:24 +08:00
<head>
2025-09-14 18:30:44 +08:00
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Vue3 + Vite + JavaScript + Element-Plus 的后台管理模板vue3-element-admin 的 JavaScript 版本"
/>
<meta
name="keywords"
content="vue,element-plus,typescript,vue-element-admin,vue3-element-admin"
/>
<title>启航电商ERP系统</title>
</head>
<body>
<div id="app">
<div class="loading-container">
<div class="loading-spinner">
<div class="loading-bar"></div>
<div class="loading-bar"></div>
<div class="loading-bar"></div>
</div>
</div>
</div>
</body>
<script type="module" src="/src/main.js"></script>
<style>
2024-03-15 16:39:24 +08:00
html,
body,
#app {
2025-09-14 18:30:44 +08:00
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
2024-03-15 16:39:24 +08:00
height: 100%;
}
2025-09-14 18:30:44 +08:00
.loading-container {
display: flex;
flex-direction: column;
gap: 24px;
align-items: center;
justify-content: center;
2024-03-15 16:39:24 +08:00
}
2025-09-14 18:30:44 +08:00
.loading-spinner {
display: flex;
gap: 6px;
align-items: center;
justify-content: center;
height: 40px;
2024-03-15 16:39:24 +08:00
}
2025-09-14 18:30:44 +08:00
.loading-bar {
width: 4px;
height: 24px;
background-color: #498cff;
border-radius: 2px;
animation: loading-animation 1.2s ease-in-out infinite;
2024-03-15 16:39:24 +08:00
}
2025-09-14 18:30:44 +08:00
.loading-bar:nth-child(1) {
animation-delay: 0s;
2024-03-15 16:39:24 +08:00
}
2025-09-14 18:30:44 +08:00
.loading-bar:nth-child(2) {
animation-delay: 0.2s;
2024-03-15 16:39:24 +08:00
}
2025-09-14 18:30:44 +08:00
.loading-bar:nth-child(3) {
animation-delay: 0.4s;
}
2024-03-15 16:39:24 +08:00
2025-09-14 18:30:44 +08:00
@keyframes loading-animation {
2024-03-15 16:39:24 +08:00
0% {
2025-09-14 18:30:44 +08:00
opacity: 0.3;
transform: scaleY(0.5);
2024-03-15 16:39:24 +08:00
}
2025-09-14 18:30:44 +08:00
50% {
opacity: 1;
transform: scaleY(1.2);
2024-03-15 16:39:24 +08:00
}
2025-09-14 18:30:44 +08:00
2024-03-15 16:39:24 +08:00
100% {
2025-09-14 18:30:44 +08:00
opacity: 0.3;
transform: scaleY(0.5);
2024-03-15 16:39:24 +08:00
}
}
</style>
</html>