index.scss
1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
uni-toast .uni-simple-toast__text{
background:#ffffff;
color:#757575;
border: 1upx solid #f4f4f4;
box-shadow: 10upx 10upx 20upx rgba(0, 0, 0, 0.05);
}
.loadingDiv{
position: fixed;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
width : 100vw;
height : 100vh;
}
.loadingDiv-box{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
min-width : 70px;
min-height: 70px;
box-sizing: border-box;
background : #f7f7f7;
padding: 8px 0;
border-radius: 5px;
}
.loadingDiv-box-title{
font-size: 12px;
color : '#646464';
// margin-top: 30px;
}
.loadingDiv-box-window{
position: relative;
width: 30px;
height: 30px;
overflow: hidden;
z-index: 10;
}
.loadingDiv-box-img{
position: absolute;
top: 0;
left: 0;
display: block;
height: 30px;
-webkit-animation: 1000ms move infinite linear;
}
@-webkit-keyframes move {
0% {
left: -100%;
}
20% {
left: -80%;
}
40% {
left: -60%;
}
60% {
left: -40%;
}
80% {
left: -20%;
}
100% {
left: 0;
}
}
@keyframes move {
0% {
left: -100%;
}
20% {
left: -80%;
}
40% {
left: -60%;
}
60% {
left: -40%;
}
80% {
left: -20%;
}
100% {
left: 0;
}
}
.loadingDiv-box-icon{
position: absolute;
top: 0;
left: 0;
width: 30px;
height: 30px;
background-size: cover;
background-repeat: no-repeat;
background-position : 0px 0px;
}