unika-components 1.0.184 → 1.0.186
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/dist/unika-components.css +68 -68
- package/dist/unika-components.esm.js +433 -19129
- package/dist/unika-components.umd.js +420 -19115
- package/package.json +1 -1
|
@@ -1,49 +1,30 @@
|
|
|
1
|
+
|
|
2
|
+
.uni-image-component {
|
|
3
|
+
max-width: 100%;
|
|
4
|
+
}
|
|
1
5
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
top: 50%;
|
|
9
|
-
left: 50%;
|
|
10
|
-
transform: translate(-50%, -50%);
|
|
11
|
-
cursor: pointer;
|
|
12
|
-
font-size: 2rem;
|
|
13
|
-
color: #fff;
|
|
14
|
-
background: rgba(0, 0, 0, 0.6);
|
|
15
|
-
border-radius: 50%;
|
|
16
|
-
padding: 10px;
|
|
17
|
-
transition: background 0.3s;
|
|
18
|
-
}
|
|
19
|
-
.play-pause-button:hover {
|
|
20
|
-
background: rgba(0, 0, 0, 0.8);
|
|
21
|
-
}
|
|
22
|
-
|
|
6
|
+
.like-button {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
align-items: center;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
}
|
|
23
12
|
|
|
24
|
-
.
|
|
13
|
+
.icon-heart {
|
|
14
|
+
font-size: 24px;
|
|
15
|
+
color: #e74c3c;
|
|
16
|
+
}
|
|
25
17
|
|
|
18
|
+
.liked {
|
|
19
|
+
color: #f00; /* 更改颜色以示已赞 */
|
|
26
20
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
color: #666
|
|
21
|
+
|
|
22
|
+
.like-count {
|
|
23
|
+
margin-top: 4px;
|
|
24
|
+
font-size: 16px;
|
|
25
|
+
color: #333;
|
|
33
26
|
}
|
|
34
27
|
|
|
35
|
-
h2.uni-text-component, p.uni-text-component {
|
|
36
|
-
margin-bottom: 0;
|
|
37
|
-
}
|
|
38
|
-
button.uni-text-component {
|
|
39
|
-
padding: 5px 10px;
|
|
40
|
-
cursor: pointer;
|
|
41
|
-
}
|
|
42
|
-
.uni-text-component {
|
|
43
|
-
box-sizing: border-box;
|
|
44
|
-
white-space: pre-wrap;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
28
|
.slide-guide {
|
|
48
29
|
position: absolute;
|
|
49
30
|
bottom: 90px;
|
|
@@ -116,37 +97,51 @@ body, html {
|
|
|
116
97
|
transform: translate3d(-50%, -50%, 0);
|
|
117
98
|
}
|
|
118
99
|
}
|
|
119
|
-
|
|
120
|
-
.uni-image-component {
|
|
121
|
-
max-width: 100%;
|
|
122
|
-
}
|
|
123
100
|
|
|
124
|
-
.like-button {
|
|
125
|
-
display: flex;
|
|
126
|
-
flex-direction: column;
|
|
127
|
-
align-items: center;
|
|
128
|
-
cursor: pointer;
|
|
129
|
-
}
|
|
130
101
|
|
|
131
|
-
.
|
|
132
|
-
font-size: 24px;
|
|
133
|
-
color: #e74c3c;
|
|
134
|
-
}
|
|
102
|
+
.uni-calendar-component {
|
|
135
103
|
|
|
136
|
-
.liked {
|
|
137
|
-
color: #f00; /* 更改颜色以示已赞 */
|
|
138
104
|
}
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
105
|
+
.slot-number {
|
|
106
|
+
position: absolute;
|
|
107
|
+
bottom: 2px;
|
|
108
|
+
left: 7px;
|
|
109
|
+
font-size: 12px;
|
|
110
|
+
color: #666
|
|
144
111
|
}
|
|
112
|
+
|
|
113
|
+
h2.uni-text-component, p.uni-text-component {
|
|
114
|
+
margin-bottom: 0;
|
|
115
|
+
}
|
|
116
|
+
button.uni-text-component {
|
|
117
|
+
padding: 5px 10px;
|
|
118
|
+
cursor: pointer;
|
|
119
|
+
}
|
|
120
|
+
.uni-text-component {
|
|
121
|
+
box-sizing: border-box;
|
|
122
|
+
white-space: pre-wrap;
|
|
123
|
+
}
|
|
145
124
|
|
|
146
|
-
.
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
}
|
|
125
|
+
.uni-video-component {
|
|
126
|
+
position: relative;
|
|
127
|
+
text-align: center;
|
|
128
|
+
}
|
|
129
|
+
.play-pause-button {
|
|
130
|
+
position: absolute;
|
|
131
|
+
top: 50%;
|
|
132
|
+
left: 50%;
|
|
133
|
+
transform: translate(-50%, -50%);
|
|
134
|
+
cursor: pointer;
|
|
135
|
+
font-size: 2rem;
|
|
136
|
+
color: #fff;
|
|
137
|
+
background: rgba(0, 0, 0, 0.6);
|
|
138
|
+
border-radius: 50%;
|
|
139
|
+
padding: 10px;
|
|
140
|
+
transition: background 0.3s;
|
|
141
|
+
}
|
|
142
|
+
.play-pause-button:hover {
|
|
143
|
+
background: rgba(0, 0, 0, 0.8);
|
|
144
|
+
}
|
|
150
145
|
|
|
151
146
|
.ant-input-number {
|
|
152
147
|
box-sizing: border-box;
|
|
@@ -196,13 +191,18 @@ body, html {
|
|
|
196
191
|
max-width: 100%;
|
|
197
192
|
max-height: 100%;
|
|
198
193
|
}
|
|
194
|
+
|
|
195
|
+
.effect {
|
|
196
|
+
width: 100%;
|
|
197
|
+
height: 100%;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.uni-build-up-component {
|
|
201
|
+
}
|
|
199
202
|
|
|
200
203
|
.uni-svg-component {
|
|
201
204
|
display: inline-block;
|
|
202
205
|
}
|
|
203
|
-
|
|
204
|
-
.uni-build-up-component {
|
|
205
|
-
}
|
|
206
206
|
/**
|
|
207
207
|
* Swiper 6.8.4
|
|
208
208
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|