vdi/pc-fe/src/pages/welcome/index.less

67 lines
1.4 KiB
Plaintext
Raw Normal View History

2025-08-21 10:06:49 +00:00
.welcomeCon{
2025-08-22 10:59:43 +00:00
width: 100%;
height: 100%;
2025-08-21 10:06:49 +00:00
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.showTextCon{
display: flex;
flex-direction: column;
2025-08-28 03:14:36 +00:00
// justify-self: center;
2025-08-21 10:06:49 +00:00
align-items: center;
2025-08-28 03:14:36 +00:00
height: 155px;
justify-content: space-between;
.imgIcon{
2025-08-21 10:06:49 +00:00
display: flex;
2025-08-28 03:14:36 +00:00
flex-direction: column;
2025-08-21 10:06:49 +00:00
.welcomeIcon{
2025-08-28 03:14:36 +00:00
height: 90px;
width: 350px;
2025-08-21 10:06:49 +00:00
}
2025-08-28 03:14:36 +00:00
}
.loadingCon{
width: 96px;
height: 12px;
display: flex;
justify-content: space-between;
align-items: center;
.dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(1, 90, 255, 0.2);
2025-08-21 10:06:49 +00:00
display: flex;
justify-content: space-between;
2025-08-28 03:14:36 +00:00
animation: loading 1.5s infinite ease-in-out;
}
2025-08-21 10:06:49 +00:00
2025-08-28 03:14:36 +00:00
.dot:nth-child(1) {
animation-delay: -0.32s;
}
2025-08-21 10:06:49 +00:00
2025-08-28 03:14:36 +00:00
.dot:nth-child(2) {
animation-delay: -0.16s;
}
2025-08-21 10:06:49 +00:00
2025-08-28 03:14:36 +00:00
@keyframes loading {
0%, 100% {
background: rgba(1, 90, 255, 0.2);
// transform: scale(0.6);
}
25% {
background: rgba(1, 90, 255, 0.5);
// transform: scale(0.8);
}
50% {
background: rgba(1, 90, 255, 1);
// transform: scale(1);
}
75% {
background: rgba(1, 90, 255, 0.5);
// transform: scale(0.8);
2025-08-21 10:06:49 +00:00
}
}
}
}
}