Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-23 04:19:20 +08:00
v3-admin-vite/public/app-loading.css

46 lines
674 B
CSS
Raw Normal View History

2024-11-19 20:14:23 +08:00
/* 白屏阶段会执行的 CSS 加载动画 */
2022-04-22 16:40:40 +08:00
#app-loading {
position: relative;
2023-05-17 21:05:09 +08:00
top: 45vh;
margin: 0 auto;
color: #409eff;
2023-05-23 18:15:08 +08:00
font-size: 12px;
}
#app-loading,
#app-loading::before,
#app-loading::after {
2023-05-23 18:15:08 +08:00
width: 2em;
height: 2em;
border-radius: 50%;
animation: 2s ease-in-out infinite app-loading-animation;
2022-04-22 16:40:40 +08:00
}
#app-loading::before,
#app-loading::after {
2022-04-22 16:40:40 +08:00
content: "";
position: absolute;
}
#app-loading::before {
2023-05-23 18:15:08 +08:00
left: -4em;
animation-delay: -0.2s;
2022-04-22 16:40:40 +08:00
}
#app-loading::after {
2023-05-23 18:15:08 +08:00
left: 4em;
animation-delay: 0.2s;
2022-04-22 16:40:40 +08:00
}
2023-05-23 18:15:08 +08:00
@keyframes app-loading-animation {
2022-04-22 16:40:40 +08:00
0%,
80%,
100% {
2023-05-23 18:15:08 +08:00
box-shadow: 0 2em 0 -2em;
2022-04-22 16:40:40 +08:00
}
40% {
2023-05-23 18:15:08 +08:00
box-shadow: 0 2em 0 0;
2022-04-22 16:40:40 +08:00
}
}