mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-09-08 12:57:11 +08:00
first commit
This commit is contained in:
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
49
public/static/css/loading.css
Normal file
49
public/static/css/loading.css
Normal file
@@ -0,0 +1,49 @@
|
||||
body {
|
||||
overflow: hidden;
|
||||
}
|
||||
.init-box {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.init-loading {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.init-loading-rect {
|
||||
background-color: #007aff;
|
||||
height: 100%;
|
||||
width: 15%;
|
||||
animation: init-wave 1.2s infinite ease-in-out;
|
||||
}
|
||||
|
||||
.init-loading-rect:nth-child(1) {
|
||||
animation-delay: -1.2s;
|
||||
}
|
||||
.init-loading-rect:nth-child(2) {
|
||||
animation-delay: -1.1s;
|
||||
}
|
||||
.init-loading-rect:nth-child(3) {
|
||||
animation-delay: -1s;
|
||||
}
|
||||
.init-loading-rect:nth-child(4) {
|
||||
animation-delay: -0.9s;
|
||||
}
|
||||
.init-loading-rect:nth-child(5) {
|
||||
animation-delay: -0.8s;
|
||||
}
|
||||
|
||||
@keyframes init-wave {
|
||||
0%,
|
||||
40%,
|
||||
100% {
|
||||
transform: scaleY(0.4);
|
||||
}
|
||||
20% {
|
||||
transform: scaleY(1);
|
||||
}
|
||||
}
|
BIN
public/static/images/loading.gif
Normal file
BIN
public/static/images/loading.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
Reference in New Issue
Block a user