@kaiyinchem/ky-uniui 1.0.41 → 1.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/ky-loading.vue +30 -31
- package/package.json +1 -1
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
|
|
36
36
|
<style scoped lang="scss">
|
|
37
37
|
.ky-loading-box {
|
|
38
|
-
height: 25rpx;
|
|
39
38
|
position: absolute;
|
|
40
39
|
top: 0;
|
|
41
40
|
left: 0;
|
|
@@ -48,46 +47,21 @@
|
|
|
48
47
|
z-index: 0;
|
|
49
48
|
|
|
50
49
|
&.isRelative {
|
|
51
|
-
position: relative;
|
|
52
|
-
|
|
50
|
+
position: relative;
|
|
51
|
+
margin: 24rpx;
|
|
53
52
|
}
|
|
54
53
|
}
|
|
55
54
|
|
|
56
55
|
.ky-loading1 {
|
|
57
|
-
width:
|
|
58
|
-
height:
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.ky-loading3 {
|
|
62
|
-
position: relative;
|
|
63
|
-
width: 75px;
|
|
64
|
-
height: 75px;
|
|
65
|
-
overflow: visible;
|
|
66
|
-
|
|
67
|
-
.ky-loading-shape {
|
|
68
|
-
position: absolute;
|
|
69
|
-
width: 20px;
|
|
70
|
-
height: 20px;
|
|
71
|
-
border-radius: 0;
|
|
72
|
-
background-color: var(--color-primary);
|
|
73
|
-
display: block;
|
|
74
|
-
background-color: var(--color-primary);
|
|
75
|
-
border-radius: 3px;
|
|
76
|
-
|
|
77
|
-
&:nth-child(1) {
|
|
78
|
-
left: 0px;
|
|
79
|
-
top: 0;
|
|
80
|
-
animation: amove 2s infinite linear;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
56
|
+
width: 180rpx;
|
|
57
|
+
height: 180rpx;
|
|
84
58
|
}
|
|
85
59
|
|
|
86
60
|
.ky-loading2 {
|
|
87
61
|
display: flex;
|
|
88
62
|
justify-content: center;
|
|
89
63
|
align-items: center;
|
|
90
|
-
|
|
64
|
+
height: 25rpx;
|
|
91
65
|
.ky-loading-shape {
|
|
92
66
|
width: 25rpx;
|
|
93
67
|
height: 25rpx;
|
|
@@ -107,6 +81,31 @@
|
|
|
107
81
|
.shape3 {
|
|
108
82
|
animation: pulse .4s ease .4s infinite alternate;
|
|
109
83
|
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.ky-loading3 {
|
|
87
|
+
position: relative;
|
|
88
|
+
width: 75px;
|
|
89
|
+
height: 75px;
|
|
90
|
+
overflow: visible;
|
|
91
|
+
|
|
92
|
+
.ky-loading-shape {
|
|
93
|
+
position: absolute;
|
|
94
|
+
width: 20px;
|
|
95
|
+
height: 20px;
|
|
96
|
+
border-radius: 0;
|
|
97
|
+
background-color: var(--color-primary);
|
|
98
|
+
display: block;
|
|
99
|
+
background-color: var(--color-primary);
|
|
100
|
+
border-radius: 3px;
|
|
101
|
+
|
|
102
|
+
&:nth-child(1) {
|
|
103
|
+
left: 0px;
|
|
104
|
+
top: 0;
|
|
105
|
+
animation: amove 2s infinite linear;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
110
109
|
}
|
|
111
110
|
|
|
112
111
|
@keyframes pulse {
|