unika-components 1.0.350 → 1.0.351
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.
|
@@ -1,70 +1,9 @@
|
|
|
1
1
|
|
|
2
|
-
.
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.ele-text .ani-wrap {
|
|
7
|
-
width: 100%;
|
|
8
|
-
height: 100%;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.text-common {
|
|
12
|
-
padding: 5px;
|
|
13
|
-
text-orientation: upright;
|
|
14
|
-
white-space: pre-wrap;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
/* 文本动画类 */
|
|
18
|
-
.text-fadeIn {
|
|
19
|
-
animation: fadeIn 1s ease-in-out;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.text-slideIn {
|
|
23
|
-
animation: slideIn 1s ease-in-out;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.text-bounceIn {
|
|
27
|
-
animation: bounceIn 1s ease-in-out;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/* 基础动画关键帧 */
|
|
31
|
-
@keyframes fadeIn {
|
|
32
|
-
from {
|
|
33
|
-
opacity: 0;
|
|
34
|
-
}
|
|
35
|
-
to {
|
|
36
|
-
opacity: 1;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
@keyframes slideIn {
|
|
41
|
-
from {
|
|
42
|
-
transform: translateY(20px);
|
|
43
|
-
opacity: 0;
|
|
44
|
-
}
|
|
45
|
-
to {
|
|
46
|
-
transform: translateY(0);
|
|
47
|
-
opacity: 1;
|
|
48
|
-
}
|
|
2
|
+
.uni-image-component {
|
|
3
|
+
max-width: 100%;
|
|
49
4
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
0% {
|
|
53
|
-
transform: scale(0.3);
|
|
54
|
-
opacity: 0;
|
|
55
|
-
}
|
|
56
|
-
50% {
|
|
57
|
-
transform: scale(1.05);
|
|
58
|
-
opacity: 0.8;
|
|
59
|
-
}
|
|
60
|
-
70% {
|
|
61
|
-
transform: scale(0.9);
|
|
62
|
-
opacity: 0.9;
|
|
63
|
-
}
|
|
64
|
-
100% {
|
|
65
|
-
transform: scale(1);
|
|
66
|
-
opacity: 1;
|
|
67
|
-
}
|
|
5
|
+
.uni-image-mask-wrapper {
|
|
6
|
+
display: inline-block;
|
|
68
7
|
}
|
|
69
8
|
|
|
70
9
|
#audio {
|
|
@@ -139,6 +78,86 @@
|
|
|
139
78
|
height: 2px;
|
|
140
79
|
background: #fff;
|
|
141
80
|
}
|
|
81
|
+
|
|
82
|
+
.ele-text {
|
|
83
|
+
position: relative;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.ele-text .ani-wrap {
|
|
87
|
+
width: 100%;
|
|
88
|
+
height: 100%;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.text-common {
|
|
92
|
+
padding: 5px;
|
|
93
|
+
text-orientation: upright;
|
|
94
|
+
white-space: pre-wrap;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/* 文本动画类 */
|
|
98
|
+
.text-fadeIn {
|
|
99
|
+
animation: fadeIn 1s ease-in-out;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.text-slideIn {
|
|
103
|
+
animation: slideIn 1s ease-in-out;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.text-bounceIn {
|
|
107
|
+
animation: bounceIn 1s ease-in-out;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* 基础动画关键帧 */
|
|
111
|
+
@keyframes fadeIn {
|
|
112
|
+
from {
|
|
113
|
+
opacity: 0;
|
|
114
|
+
}
|
|
115
|
+
to {
|
|
116
|
+
opacity: 1;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
@keyframes slideIn {
|
|
121
|
+
from {
|
|
122
|
+
transform: translateY(20px);
|
|
123
|
+
opacity: 0;
|
|
124
|
+
}
|
|
125
|
+
to {
|
|
126
|
+
transform: translateY(0);
|
|
127
|
+
opacity: 1;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
@keyframes bounceIn {
|
|
132
|
+
0% {
|
|
133
|
+
transform: scale(0.3);
|
|
134
|
+
opacity: 0;
|
|
135
|
+
}
|
|
136
|
+
50% {
|
|
137
|
+
transform: scale(1.05);
|
|
138
|
+
opacity: 0.8;
|
|
139
|
+
}
|
|
140
|
+
70% {
|
|
141
|
+
transform: scale(0.9);
|
|
142
|
+
opacity: 0.9;
|
|
143
|
+
}
|
|
144
|
+
100% {
|
|
145
|
+
transform: scale(1);
|
|
146
|
+
opacity: 1;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
.uni-calendar-component {
|
|
152
|
+
|
|
153
|
+
}
|
|
154
|
+
.slot-number {
|
|
155
|
+
position: absolute;
|
|
156
|
+
bottom: 2px;
|
|
157
|
+
left: 7px;
|
|
158
|
+
font-size: 12px;
|
|
159
|
+
color: #666
|
|
160
|
+
}
|
|
142
161
|
|
|
143
162
|
.uni-video-component {
|
|
144
163
|
position: relative;
|
|
@@ -160,13 +179,6 @@
|
|
|
160
179
|
.play-pause-button:hover {
|
|
161
180
|
background: rgba(0, 0, 0, 0.8);
|
|
162
181
|
}
|
|
163
|
-
|
|
164
|
-
.uni-image-component {
|
|
165
|
-
max-width: 100%;
|
|
166
|
-
}
|
|
167
|
-
.uni-image-mask-wrapper {
|
|
168
|
-
display: inline-block;
|
|
169
|
-
}
|
|
170
182
|
|
|
171
183
|
.ant-input-number {
|
|
172
184
|
box-sizing: border-box;
|
|
@@ -225,30 +237,11 @@
|
|
|
225
237
|
color: #333;
|
|
226
238
|
}
|
|
227
239
|
|
|
228
|
-
|
|
229
|
-
.uni-calendar-component {
|
|
230
|
-
|
|
231
|
-
}
|
|
232
|
-
.slot-number {
|
|
233
|
-
position: absolute;
|
|
234
|
-
bottom: 2px;
|
|
235
|
-
left: 7px;
|
|
236
|
-
font-size: 12px;
|
|
237
|
-
color: #666
|
|
238
|
-
}
|
|
239
|
-
|
|
240
240
|
.effect {
|
|
241
241
|
width: 100%;
|
|
242
242
|
height: 100%;
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
-
.uni-build-up-component {
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.uni-svg-component {
|
|
249
|
-
display: inline-block;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
245
|
.uni-lotties-component {
|
|
253
246
|
width: 100%;
|
|
254
247
|
height: 100%;
|
|
@@ -451,6 +444,13 @@
|
|
|
451
444
|
will-change: transform;
|
|
452
445
|
}
|
|
453
446
|
|
|
447
|
+
.uni-build-up-component {
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.uni-svg-component {
|
|
451
|
+
display: inline-block;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
454
|
|
|
455
455
|
.no-animation__card {
|
|
456
456
|
font-weight: 500;
|
|
@@ -68636,7 +68636,7 @@ function useTouchHandler(pages, currentPageId, deltaY) {
|
|
|
68636
68636
|
}
|
|
68637
68637
|
|
|
68638
68638
|
var script = defineComponent({
|
|
68639
|
-
name: '
|
|
68639
|
+
name: 'WorkRenderer',
|
|
68640
68640
|
components: {},
|
|
68641
68641
|
props: {
|
|
68642
68642
|
workData: {
|
|
@@ -68924,7 +68924,6 @@ script.render = render;
|
|
|
68924
68924
|
script.__scopeId = "data-v-18d7a41c";
|
|
68925
68925
|
script.__file = "src/components/WorkRender/WorkRenderer.vue";
|
|
68926
68926
|
|
|
68927
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
68928
68927
|
script.install = (app) => {
|
|
68929
68928
|
app.component(script.name, script);
|
|
68930
68929
|
};
|
|
@@ -68643,7 +68643,7 @@ summary tabindex target title type usemap value width wmode wrap`;
|
|
|
68643
68643
|
}
|
|
68644
68644
|
|
|
68645
68645
|
var script = vue.defineComponent({
|
|
68646
|
-
name: '
|
|
68646
|
+
name: 'WorkRenderer',
|
|
68647
68647
|
components: {},
|
|
68648
68648
|
props: {
|
|
68649
68649
|
workData: {
|
|
@@ -68931,7 +68931,6 @@ summary tabindex target title type usemap value width wmode wrap`;
|
|
|
68931
68931
|
script.__scopeId = "data-v-18d7a41c";
|
|
68932
68932
|
script.__file = "src/components/WorkRender/WorkRenderer.vue";
|
|
68933
68933
|
|
|
68934
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
68935
68934
|
script.install = (app) => {
|
|
68936
68935
|
app.component(script.name, script);
|
|
68937
68936
|
};
|