unika-components 1.0.56 → 1.0.58
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.
|
@@ -357,9 +357,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
357
357
|
rendererSettings: any;
|
|
358
358
|
assetsPath: string;
|
|
359
359
|
}> | null>;
|
|
360
|
-
loopC: import("vue").
|
|
361
|
-
delayC: import("vue").
|
|
362
|
-
animationLinkC: import("vue").
|
|
360
|
+
loopC: import("vue").Ref<boolean>;
|
|
361
|
+
delayC: import("vue").Ref<number>;
|
|
362
|
+
animationLinkC: import("vue").Ref<string>;
|
|
363
363
|
play: () => void;
|
|
364
364
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
365
365
|
left: {
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
|
|
2
|
+
.uni-image-component {
|
|
3
|
+
max-width: 100%;
|
|
4
|
+
}
|
|
5
|
+
|
|
2
6
|
h2.uni-text-component, p.uni-text-component {
|
|
3
7
|
margin-bottom: 0;
|
|
4
8
|
}
|
|
@@ -11,26 +15,100 @@ button.uni-text-component {
|
|
|
11
15
|
white-space: pre-wrap;
|
|
12
16
|
}
|
|
13
17
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
18
|
+
#audio {
|
|
19
|
+
position: absolute;
|
|
20
|
+
right: 10px;
|
|
21
|
+
top: 10px;
|
|
22
|
+
z-index: 103;
|
|
23
|
+
width: 30px;
|
|
24
|
+
height: 30px;
|
|
25
|
+
display: -webkit-box;
|
|
26
|
+
display: -ms-flexbox;
|
|
27
|
+
display: flex;
|
|
28
|
+
-webkit-box-align: center;
|
|
29
|
+
-ms-flex-align: center;
|
|
30
|
+
align-items: center;
|
|
31
|
+
}
|
|
32
|
+
#audio .audio {
|
|
33
|
+
width: 100%;
|
|
34
|
+
height: 100%;
|
|
35
|
+
display: -webkit-box;
|
|
36
|
+
display: -ms-flexbox;
|
|
37
|
+
display: flex;
|
|
38
|
+
-webkit-box-align: center;
|
|
39
|
+
-ms-flex-align: center;
|
|
40
|
+
align-items: center;
|
|
41
|
+
-webkit-box-pack: center;
|
|
42
|
+
-ms-flex-pack: center;
|
|
43
|
+
justify-content: center;
|
|
44
|
+
color: #fff;
|
|
45
|
+
background: #666;
|
|
46
|
+
border-radius: 50%;
|
|
47
|
+
overflow: hidden;
|
|
48
|
+
will-change: transform;
|
|
49
|
+
}
|
|
50
|
+
#audio .audio .music-icon {
|
|
51
|
+
display: block;
|
|
52
|
+
width: 100%;
|
|
53
|
+
height: 100%;
|
|
54
|
+
}
|
|
55
|
+
#audio .icon-cancel {
|
|
56
|
+
position: absolute;
|
|
57
|
+
width: 100%;
|
|
58
|
+
height: 100%;
|
|
59
|
+
border-radius: 50%;
|
|
60
|
+
overflow: hidden;
|
|
61
|
+
padding: 14px 0;
|
|
62
|
+
}
|
|
63
|
+
#audio .icon-cancel .icon-h {
|
|
64
|
+
-webkit-transform: rotate(45deg);
|
|
65
|
+
transform: rotate(45deg);
|
|
66
|
+
width: 100%;
|
|
67
|
+
height: 2px;
|
|
68
|
+
background: #fff;
|
|
69
|
+
}
|
|
70
|
+
#audio .mrotate {
|
|
71
|
+
-webkit-animation: mrotate 5s linear infinite;
|
|
72
|
+
animation: mrotate 5s linear infinite;
|
|
73
|
+
}
|
|
74
|
+
.video-play-audio {
|
|
75
|
+
position: absolute;
|
|
76
|
+
left: -9999px;
|
|
77
|
+
top: -9999px;
|
|
78
|
+
width: 0;
|
|
79
|
+
height: 0;
|
|
80
|
+
z-index: -1;
|
|
81
|
+
opacity: 1;
|
|
82
|
+
overflow: hidden;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.music-img {
|
|
86
|
+
position: relative;
|
|
87
|
+
display: inline-block;
|
|
88
|
+
width: 100%;
|
|
89
|
+
height: 100%;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.uni-music-component {
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* 无限旋转 */
|
|
96
|
+
@keyframes mrotate {
|
|
97
|
+
from {
|
|
98
|
+
transform: rotate(0deg);
|
|
17
99
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
top: 50%;
|
|
21
|
-
left: 50%;
|
|
22
|
-
transform: translate(-50%, -50%);
|
|
23
|
-
cursor: pointer;
|
|
24
|
-
font-size: 2rem;
|
|
25
|
-
color: #fff;
|
|
26
|
-
background: rgba(0, 0, 0, 0.6);
|
|
27
|
-
border-radius: 50%;
|
|
28
|
-
padding: 10px;
|
|
29
|
-
transition: background 0.3s;
|
|
100
|
+
to {
|
|
101
|
+
transform: rotate(360deg);
|
|
30
102
|
}
|
|
31
|
-
|
|
32
|
-
|
|
103
|
+
}
|
|
104
|
+
@-webkit-keyframes mrotate {
|
|
105
|
+
from {
|
|
106
|
+
-webkit-transform: rotate(0deg);
|
|
33
107
|
}
|
|
108
|
+
to {
|
|
109
|
+
-webkit-transform: rotate(360deg);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
34
112
|
|
|
35
113
|
.slide-guide {
|
|
36
114
|
position: absolute;
|
|
@@ -105,28 +183,6 @@ body, html {
|
|
|
105
183
|
}
|
|
106
184
|
}
|
|
107
185
|
|
|
108
|
-
#app1 {
|
|
109
|
-
position: relative;
|
|
110
|
-
}
|
|
111
|
-
.snowflake {
|
|
112
|
-
position: absolute;
|
|
113
|
-
top: 0;
|
|
114
|
-
left: 0;
|
|
115
|
-
width: 10px;
|
|
116
|
-
height: 10px;
|
|
117
|
-
background: red;
|
|
118
|
-
border-radius: 50%;
|
|
119
|
-
animation: falling 10s linear infinite;
|
|
120
|
-
}
|
|
121
|
-
@keyframes falling {
|
|
122
|
-
from {
|
|
123
|
-
transform: translateY(0) rotate(0deg);
|
|
124
|
-
}
|
|
125
|
-
to {
|
|
126
|
-
transform: translateY(100vh) rotate(360deg);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
186
|
.uni-background-component {
|
|
131
187
|
width: 100%;
|
|
132
188
|
}
|
|
@@ -163,6 +219,49 @@ body, html {
|
|
|
163
219
|
opacity: 0.1;
|
|
164
220
|
}
|
|
165
221
|
|
|
222
|
+
.uni-video-component {
|
|
223
|
+
position: relative;
|
|
224
|
+
text-align: center;
|
|
225
|
+
}
|
|
226
|
+
.play-pause-button {
|
|
227
|
+
position: absolute;
|
|
228
|
+
top: 50%;
|
|
229
|
+
left: 50%;
|
|
230
|
+
transform: translate(-50%, -50%);
|
|
231
|
+
cursor: pointer;
|
|
232
|
+
font-size: 2rem;
|
|
233
|
+
color: #fff;
|
|
234
|
+
background: rgba(0, 0, 0, 0.6);
|
|
235
|
+
border-radius: 50%;
|
|
236
|
+
padding: 10px;
|
|
237
|
+
transition: background 0.3s;
|
|
238
|
+
}
|
|
239
|
+
.play-pause-button:hover {
|
|
240
|
+
background: rgba(0, 0, 0, 0.8);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.slot-number {
|
|
244
|
+
position: absolute;
|
|
245
|
+
bottom: 2px;
|
|
246
|
+
left: 7px;
|
|
247
|
+
font-size: 12px;
|
|
248
|
+
color: #666
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/*.swiper-container {
|
|
252
|
+
width: 100%;
|
|
253
|
+
height: 300px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.swiper-slide {
|
|
257
|
+
text-align: center;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.swiper-slide img {
|
|
261
|
+
max-width: 100%;
|
|
262
|
+
max-height: 100%;
|
|
263
|
+
}*/
|
|
264
|
+
|
|
166
265
|
.like-button {
|
|
167
266
|
display: flex;
|
|
168
267
|
flex-direction: column;
|
|
@@ -184,33 +283,29 @@ body, html {
|
|
|
184
283
|
font-size: 16px;
|
|
185
284
|
color: #333;
|
|
186
285
|
}
|
|
187
|
-
|
|
188
|
-
.uni-image-component {
|
|
189
|
-
max-width: 100%;
|
|
190
|
-
}
|
|
191
286
|
|
|
192
|
-
|
|
193
|
-
position:
|
|
194
|
-
bottom: 2px;
|
|
195
|
-
left: 7px;
|
|
196
|
-
font-size: 12px;
|
|
197
|
-
color: #666
|
|
287
|
+
#app1 {
|
|
288
|
+
position: relative;
|
|
198
289
|
}
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
290
|
+
.snowflake {
|
|
291
|
+
position: absolute;
|
|
292
|
+
top: 0;
|
|
293
|
+
left: 0;
|
|
294
|
+
width: 10px;
|
|
295
|
+
height: 10px;
|
|
296
|
+
background: red;
|
|
297
|
+
border-radius: 50%;
|
|
298
|
+
animation: falling 10s linear infinite;
|
|
203
299
|
}
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
300
|
+
@keyframes falling {
|
|
301
|
+
from {
|
|
302
|
+
transform: translateY(0) rotate(0deg);
|
|
303
|
+
}
|
|
304
|
+
to {
|
|
305
|
+
transform: translateY(100vh) rotate(360deg);
|
|
306
|
+
}
|
|
207
307
|
}
|
|
208
308
|
|
|
209
|
-
.swiper-slide img {
|
|
210
|
-
max-width: 100%;
|
|
211
|
-
max-height: 100%;
|
|
212
|
-
}*/
|
|
213
|
-
|
|
214
309
|
.video-player {
|
|
215
310
|
position: relative;
|
|
216
311
|
text-align: center;
|
|
@@ -231,101 +326,6 @@ body, html {
|
|
|
231
326
|
.play-pause-button:hover {
|
|
232
327
|
background: rgba(0, 0, 0, 0.8);
|
|
233
328
|
}
|
|
234
|
-
|
|
235
|
-
#audio {
|
|
236
|
-
position: absolute;
|
|
237
|
-
right: 10px;
|
|
238
|
-
top: 10px;
|
|
239
|
-
z-index: 103;
|
|
240
|
-
width: 30px;
|
|
241
|
-
height: 30px;
|
|
242
|
-
display: -webkit-box;
|
|
243
|
-
display: -ms-flexbox;
|
|
244
|
-
display: flex;
|
|
245
|
-
-webkit-box-align: center;
|
|
246
|
-
-ms-flex-align: center;
|
|
247
|
-
align-items: center;
|
|
248
|
-
}
|
|
249
|
-
#audio .audio {
|
|
250
|
-
width: 100%;
|
|
251
|
-
height: 100%;
|
|
252
|
-
display: -webkit-box;
|
|
253
|
-
display: -ms-flexbox;
|
|
254
|
-
display: flex;
|
|
255
|
-
-webkit-box-align: center;
|
|
256
|
-
-ms-flex-align: center;
|
|
257
|
-
align-items: center;
|
|
258
|
-
-webkit-box-pack: center;
|
|
259
|
-
-ms-flex-pack: center;
|
|
260
|
-
justify-content: center;
|
|
261
|
-
color: #fff;
|
|
262
|
-
background: #666;
|
|
263
|
-
border-radius: 50%;
|
|
264
|
-
overflow: hidden;
|
|
265
|
-
will-change: transform;
|
|
266
|
-
}
|
|
267
|
-
#audio .audio .music-icon {
|
|
268
|
-
display: block;
|
|
269
|
-
width: 100%;
|
|
270
|
-
height: 100%;
|
|
271
|
-
}
|
|
272
|
-
#audio .icon-cancel {
|
|
273
|
-
position: absolute;
|
|
274
|
-
width: 100%;
|
|
275
|
-
height: 100%;
|
|
276
|
-
border-radius: 50%;
|
|
277
|
-
overflow: hidden;
|
|
278
|
-
padding: 14px 0;
|
|
279
|
-
}
|
|
280
|
-
#audio .icon-cancel .icon-h {
|
|
281
|
-
-webkit-transform: rotate(45deg);
|
|
282
|
-
transform: rotate(45deg);
|
|
283
|
-
width: 100%;
|
|
284
|
-
height: 2px;
|
|
285
|
-
background: #fff;
|
|
286
|
-
}
|
|
287
|
-
#audio .mrotate {
|
|
288
|
-
-webkit-animation: mrotate 5s linear infinite;
|
|
289
|
-
animation: mrotate 5s linear infinite;
|
|
290
|
-
}
|
|
291
|
-
.video-play-audio {
|
|
292
|
-
position: absolute;
|
|
293
|
-
left: -9999px;
|
|
294
|
-
top: -9999px;
|
|
295
|
-
width: 0;
|
|
296
|
-
height: 0;
|
|
297
|
-
z-index: -1;
|
|
298
|
-
opacity: 1;
|
|
299
|
-
overflow: hidden;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
.music-img {
|
|
303
|
-
position: relative;
|
|
304
|
-
display: inline-block;
|
|
305
|
-
width: 100%;
|
|
306
|
-
height: 100%;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
.uni-music-component {
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
/* 无限旋转 */
|
|
313
|
-
@keyframes mrotate {
|
|
314
|
-
from {
|
|
315
|
-
transform: rotate(0deg);
|
|
316
|
-
}
|
|
317
|
-
to {
|
|
318
|
-
transform: rotate(360deg);
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
@-webkit-keyframes mrotate {
|
|
322
|
-
from {
|
|
323
|
-
-webkit-transform: rotate(0deg);
|
|
324
|
-
}
|
|
325
|
-
to {
|
|
326
|
-
-webkit-transform: rotate(360deg);
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
329
|
/**
|
|
330
330
|
* Swiper 6.8.4
|
|
331
331
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
@@ -874,6 +874,193 @@ button.swiper-pagination-bullet {
|
|
|
874
874
|
backface-visibility: hidden;
|
|
875
875
|
}
|
|
876
876
|
|
|
877
|
+
|
|
878
|
+
.no-animation__card {
|
|
879
|
+
font-weight: 500;
|
|
880
|
+
font-size: var(--countdown-size, 2rem);
|
|
881
|
+
line-height: 1.5;
|
|
882
|
+
display: block;
|
|
883
|
+
color: var(--main-color, #EC685C);
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.flip-clock {
|
|
887
|
+
text-align: center;
|
|
888
|
+
perspective: 600px;
|
|
889
|
+
margin: 0 auto;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.flip-clock *,
|
|
893
|
+
.flip-clock *:before,
|
|
894
|
+
.flip-clock *:after {
|
|
895
|
+
box-sizing: border-box;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.flip-clock__piece {
|
|
899
|
+
display: inline-block;
|
|
900
|
+
margin: 0 0.2vw;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
@media (min-width: 1000px) {
|
|
904
|
+
.flip-clock__piece {
|
|
905
|
+
margin: 0 5px;
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.flip-clock__slot {
|
|
910
|
+
font-size: var(--label-size, 1rem);
|
|
911
|
+
line-height: 1.5;
|
|
912
|
+
display: block;
|
|
913
|
+
color: var(--label-color, #222222);
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.flip-card {
|
|
917
|
+
display: block;
|
|
918
|
+
position: relative;
|
|
919
|
+
padding-bottom: 0.72em; /* halfHeight */
|
|
920
|
+
font-size: var(--countdown-size, 2.25rem);
|
|
921
|
+
line-height: 0.95;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
@media (min-width: 1000px) {
|
|
925
|
+
.flip-clock__slot {
|
|
926
|
+
font-size: 1.2rem;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.flip-card {
|
|
930
|
+
font-size: 3rem;
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.flip-card__top,
|
|
935
|
+
.flip-card__bottom,
|
|
936
|
+
.flip-card__back-bottom,
|
|
937
|
+
.flip-card__back::before,
|
|
938
|
+
.flip-card__back::after{
|
|
939
|
+
display: block;
|
|
940
|
+
height: 0.72em; /* halfHeight */
|
|
941
|
+
color: var(--main-color, #EC685C);
|
|
942
|
+
background: var(--main-flip-background-color, #222222);
|
|
943
|
+
padding: 0.23em 0.15em 0.4em;
|
|
944
|
+
border-radius: 0.15em 0.15em 0 0; /* borderRadius */
|
|
945
|
+
backface-visibility: hidden;
|
|
946
|
+
-webkit-backface-visibility: hidden;
|
|
947
|
+
transform-style: preserve-3d;
|
|
948
|
+
width: 2.1em;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.flip-card__top-4digits,
|
|
952
|
+
.flip-card__bottom-4digits,
|
|
953
|
+
.flip-card__back-bottom-4digits,
|
|
954
|
+
.flip-card__back-4digits::before,
|
|
955
|
+
.flip-card__back-4digits::after {
|
|
956
|
+
display: block;
|
|
957
|
+
height: 0.72em; /* halfHeight */
|
|
958
|
+
color: var(--main-color, #EC685C);
|
|
959
|
+
background: var(--main-flip-background-color, #222222);
|
|
960
|
+
padding: 0.23em 0.15em 0.4em;
|
|
961
|
+
border-radius: 0.15em 0.15em 0 0; /* borderRadius */
|
|
962
|
+
backface-visibility: hidden;
|
|
963
|
+
-webkit-backface-visibility: hidden;
|
|
964
|
+
transform-style: preserve-3d;
|
|
965
|
+
width: 2.65em;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.flip-card__bottom,
|
|
969
|
+
.flip-card__back-bottom,
|
|
970
|
+
.flip-card__bottom-4digits,
|
|
971
|
+
.flip-card__back-bottom-4digits {
|
|
972
|
+
color: var(--second-flip-color, #EC685C);
|
|
973
|
+
position: absolute;
|
|
974
|
+
top: 50%;
|
|
975
|
+
left: 0;
|
|
976
|
+
border-top: solid 1px var(--second-flip-background-color, #000);
|
|
977
|
+
background: var(--second-flip-background-color, #393939);
|
|
978
|
+
border-radius: 0 0 0.15em 0.15em; /* borderRadius */
|
|
979
|
+
pointer-events: none;
|
|
980
|
+
overflow: hidden;
|
|
981
|
+
z-index: 2;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.flip-card__back-bottom,
|
|
985
|
+
.flip-card__back-bottom-4digits {
|
|
986
|
+
z-index: 1;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.flip-card__bottom::after,
|
|
990
|
+
.flip-card__back-bottom::after,
|
|
991
|
+
.flip-card__bottom-4digits::after,
|
|
992
|
+
.flip-card__back-bottom-4digits::after {
|
|
993
|
+
display: block;
|
|
994
|
+
margin-top: -0.72em; /* Negative halfHeight */
|
|
995
|
+
}
|
|
996
|
+
.flip-card__back::before,
|
|
997
|
+
.flip-card__bottom::after,
|
|
998
|
+
.flip-card__back-bottom::after,
|
|
999
|
+
.flip-card__back-4digits::before,
|
|
1000
|
+
.flip-card__bottom-4digits::after,
|
|
1001
|
+
.flip-card__back-bottom-4digits::after {
|
|
1002
|
+
content: attr(data-value);
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.flip-card__back,
|
|
1006
|
+
.flip-card__back-4digits {
|
|
1007
|
+
position: absolute;
|
|
1008
|
+
top: 0;
|
|
1009
|
+
height: 100%;
|
|
1010
|
+
left: 0%;
|
|
1011
|
+
pointer-events: none;
|
|
1012
|
+
}
|
|
1013
|
+
.flip-card__back::before,
|
|
1014
|
+
.flip-card__back-4digits::before {
|
|
1015
|
+
position: relative;
|
|
1016
|
+
overflow: hidden;
|
|
1017
|
+
z-index: -1;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.flip .flip-card__back::before,
|
|
1021
|
+
.flip .flip-card__back-4digits::before {
|
|
1022
|
+
z-index: 1;
|
|
1023
|
+
animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
|
|
1024
|
+
animation-fill-mode: both;
|
|
1025
|
+
transform-origin: center bottom;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.flip .flip-card__bottom,
|
|
1029
|
+
.flip .flip-card__bottom-4digits {
|
|
1030
|
+
transform-origin: center top;
|
|
1031
|
+
animation-fill-mode: both;
|
|
1032
|
+
animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
|
|
1033
|
+
}
|
|
1034
|
+
@keyframes flipTop {
|
|
1035
|
+
0% {
|
|
1036
|
+
transform: rotateX(0deg);
|
|
1037
|
+
z-index: 2;
|
|
1038
|
+
}
|
|
1039
|
+
0%, 99% {
|
|
1040
|
+
opacity: 1;
|
|
1041
|
+
}
|
|
1042
|
+
100% {
|
|
1043
|
+
transform: rotateX(-90deg);
|
|
1044
|
+
opacity: 0;
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
@keyframes flipBottom {
|
|
1049
|
+
0%, 50% {
|
|
1050
|
+
z-index: -1;
|
|
1051
|
+
transform: rotateX(90deg);
|
|
1052
|
+
opacity: 0;
|
|
1053
|
+
}
|
|
1054
|
+
51% {
|
|
1055
|
+
opacity: 1;
|
|
1056
|
+
}
|
|
1057
|
+
100% {
|
|
1058
|
+
opacity: 1;
|
|
1059
|
+
transform: rotateX(0deg);
|
|
1060
|
+
z-index: 5;
|
|
1061
|
+
}
|
|
1062
|
+
}
|
|
1063
|
+
|
|
877
1064
|
.unika-calendar-title {
|
|
878
1065
|
font-size: 25px;
|
|
879
1066
|
padding-bottom: 4px;
|
|
@@ -1125,190 +1312,3 @@ button.swiper-pagination-bullet {
|
|
|
1125
1312
|
padding: 0 0px;
|
|
1126
1313
|
border-bottom: 1px solid
|
|
1127
1314
|
}
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
.no-animation__card {
|
|
1131
|
-
font-weight: 500;
|
|
1132
|
-
font-size: var(--countdown-size, 2rem);
|
|
1133
|
-
line-height: 1.5;
|
|
1134
|
-
display: block;
|
|
1135
|
-
color: var(--main-color, #EC685C);
|
|
1136
|
-
}
|
|
1137
|
-
|
|
1138
|
-
.flip-clock {
|
|
1139
|
-
text-align: center;
|
|
1140
|
-
perspective: 600px;
|
|
1141
|
-
margin: 0 auto;
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
.flip-clock *,
|
|
1145
|
-
.flip-clock *:before,
|
|
1146
|
-
.flip-clock *:after {
|
|
1147
|
-
box-sizing: border-box;
|
|
1148
|
-
}
|
|
1149
|
-
|
|
1150
|
-
.flip-clock__piece {
|
|
1151
|
-
display: inline-block;
|
|
1152
|
-
margin: 0 0.2vw;
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
@media (min-width: 1000px) {
|
|
1156
|
-
.flip-clock__piece {
|
|
1157
|
-
margin: 0 5px;
|
|
1158
|
-
}
|
|
1159
|
-
}
|
|
1160
|
-
|
|
1161
|
-
.flip-clock__slot {
|
|
1162
|
-
font-size: var(--label-size, 1rem);
|
|
1163
|
-
line-height: 1.5;
|
|
1164
|
-
display: block;
|
|
1165
|
-
color: var(--label-color, #222222);
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
|
-
.flip-card {
|
|
1169
|
-
display: block;
|
|
1170
|
-
position: relative;
|
|
1171
|
-
padding-bottom: 0.72em; /* halfHeight */
|
|
1172
|
-
font-size: var(--countdown-size, 2.25rem);
|
|
1173
|
-
line-height: 0.95;
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
@media (min-width: 1000px) {
|
|
1177
|
-
.flip-clock__slot {
|
|
1178
|
-
font-size: 1.2rem;
|
|
1179
|
-
}
|
|
1180
|
-
|
|
1181
|
-
.flip-card {
|
|
1182
|
-
font-size: 3rem;
|
|
1183
|
-
}
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
.flip-card__top,
|
|
1187
|
-
.flip-card__bottom,
|
|
1188
|
-
.flip-card__back-bottom,
|
|
1189
|
-
.flip-card__back::before,
|
|
1190
|
-
.flip-card__back::after{
|
|
1191
|
-
display: block;
|
|
1192
|
-
height: 0.72em; /* halfHeight */
|
|
1193
|
-
color: var(--main-color, #EC685C);
|
|
1194
|
-
background: var(--main-flip-background-color, #222222);
|
|
1195
|
-
padding: 0.23em 0.15em 0.4em;
|
|
1196
|
-
border-radius: 0.15em 0.15em 0 0; /* borderRadius */
|
|
1197
|
-
backface-visibility: hidden;
|
|
1198
|
-
-webkit-backface-visibility: hidden;
|
|
1199
|
-
transform-style: preserve-3d;
|
|
1200
|
-
width: 2.1em;
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
.flip-card__top-4digits,
|
|
1204
|
-
.flip-card__bottom-4digits,
|
|
1205
|
-
.flip-card__back-bottom-4digits,
|
|
1206
|
-
.flip-card__back-4digits::before,
|
|
1207
|
-
.flip-card__back-4digits::after {
|
|
1208
|
-
display: block;
|
|
1209
|
-
height: 0.72em; /* halfHeight */
|
|
1210
|
-
color: var(--main-color, #EC685C);
|
|
1211
|
-
background: var(--main-flip-background-color, #222222);
|
|
1212
|
-
padding: 0.23em 0.15em 0.4em;
|
|
1213
|
-
border-radius: 0.15em 0.15em 0 0; /* borderRadius */
|
|
1214
|
-
backface-visibility: hidden;
|
|
1215
|
-
-webkit-backface-visibility: hidden;
|
|
1216
|
-
transform-style: preserve-3d;
|
|
1217
|
-
width: 2.65em;
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
|
-
.flip-card__bottom,
|
|
1221
|
-
.flip-card__back-bottom,
|
|
1222
|
-
.flip-card__bottom-4digits,
|
|
1223
|
-
.flip-card__back-bottom-4digits {
|
|
1224
|
-
color: var(--second-flip-color, #EC685C);
|
|
1225
|
-
position: absolute;
|
|
1226
|
-
top: 50%;
|
|
1227
|
-
left: 0;
|
|
1228
|
-
border-top: solid 1px var(--second-flip-background-color, #000);
|
|
1229
|
-
background: var(--second-flip-background-color, #393939);
|
|
1230
|
-
border-radius: 0 0 0.15em 0.15em; /* borderRadius */
|
|
1231
|
-
pointer-events: none;
|
|
1232
|
-
overflow: hidden;
|
|
1233
|
-
z-index: 2;
|
|
1234
|
-
}
|
|
1235
|
-
|
|
1236
|
-
.flip-card__back-bottom,
|
|
1237
|
-
.flip-card__back-bottom-4digits {
|
|
1238
|
-
z-index: 1;
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
|
-
.flip-card__bottom::after,
|
|
1242
|
-
.flip-card__back-bottom::after,
|
|
1243
|
-
.flip-card__bottom-4digits::after,
|
|
1244
|
-
.flip-card__back-bottom-4digits::after {
|
|
1245
|
-
display: block;
|
|
1246
|
-
margin-top: -0.72em; /* Negative halfHeight */
|
|
1247
|
-
}
|
|
1248
|
-
.flip-card__back::before,
|
|
1249
|
-
.flip-card__bottom::after,
|
|
1250
|
-
.flip-card__back-bottom::after,
|
|
1251
|
-
.flip-card__back-4digits::before,
|
|
1252
|
-
.flip-card__bottom-4digits::after,
|
|
1253
|
-
.flip-card__back-bottom-4digits::after {
|
|
1254
|
-
content: attr(data-value);
|
|
1255
|
-
}
|
|
1256
|
-
|
|
1257
|
-
.flip-card__back,
|
|
1258
|
-
.flip-card__back-4digits {
|
|
1259
|
-
position: absolute;
|
|
1260
|
-
top: 0;
|
|
1261
|
-
height: 100%;
|
|
1262
|
-
left: 0%;
|
|
1263
|
-
pointer-events: none;
|
|
1264
|
-
}
|
|
1265
|
-
.flip-card__back::before,
|
|
1266
|
-
.flip-card__back-4digits::before {
|
|
1267
|
-
position: relative;
|
|
1268
|
-
overflow: hidden;
|
|
1269
|
-
z-index: -1;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
.flip .flip-card__back::before,
|
|
1273
|
-
.flip .flip-card__back-4digits::before {
|
|
1274
|
-
z-index: 1;
|
|
1275
|
-
animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
|
|
1276
|
-
animation-fill-mode: both;
|
|
1277
|
-
transform-origin: center bottom;
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
.flip .flip-card__bottom,
|
|
1281
|
-
.flip .flip-card__bottom-4digits {
|
|
1282
|
-
transform-origin: center top;
|
|
1283
|
-
animation-fill-mode: both;
|
|
1284
|
-
animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
|
|
1285
|
-
}
|
|
1286
|
-
@keyframes flipTop {
|
|
1287
|
-
0% {
|
|
1288
|
-
transform: rotateX(0deg);
|
|
1289
|
-
z-index: 2;
|
|
1290
|
-
}
|
|
1291
|
-
0%, 99% {
|
|
1292
|
-
opacity: 1;
|
|
1293
|
-
}
|
|
1294
|
-
100% {
|
|
1295
|
-
transform: rotateX(-90deg);
|
|
1296
|
-
opacity: 0;
|
|
1297
|
-
}
|
|
1298
|
-
}
|
|
1299
|
-
|
|
1300
|
-
@keyframes flipBottom {
|
|
1301
|
-
0%, 50% {
|
|
1302
|
-
z-index: -1;
|
|
1303
|
-
transform: rotateX(90deg);
|
|
1304
|
-
opacity: 0;
|
|
1305
|
-
}
|
|
1306
|
-
51% {
|
|
1307
|
-
opacity: 1;
|
|
1308
|
-
}
|
|
1309
|
-
100% {
|
|
1310
|
-
opacity: 1;
|
|
1311
|
-
transform: rotateX(0deg);
|
|
1312
|
-
z-index: 5;
|
|
1313
|
-
}
|
|
1314
|
-
}
|
|
@@ -46744,9 +46744,31 @@ var script$1 = defineComponent({
|
|
|
46744
46744
|
const styleProps = useStylePick(props);
|
|
46745
46745
|
const handleClick = useComponentClick(props);
|
|
46746
46746
|
const lottieAnimation = ref(null);
|
|
46747
|
-
const
|
|
46748
|
-
const
|
|
46749
|
-
const
|
|
46747
|
+
const { loop, delay, animationLink } = toRefs(props);
|
|
46748
|
+
const loopC = ref(props.loop);
|
|
46749
|
+
const delayC = ref(props.delay);
|
|
46750
|
+
const animationLinkC = ref(props.animationLink);
|
|
46751
|
+
watch(loop, (newVal) => {
|
|
46752
|
+
loopC.value = newVal;
|
|
46753
|
+
if (lottieAnimation.value) {
|
|
46754
|
+
lottieAnimation.value.stop();
|
|
46755
|
+
lottieAnimation.value.play();
|
|
46756
|
+
}
|
|
46757
|
+
});
|
|
46758
|
+
watch(delay, (newVal) => {
|
|
46759
|
+
delayC.value = newVal;
|
|
46760
|
+
if (lottieAnimation.value) {
|
|
46761
|
+
lottieAnimation.value.stop();
|
|
46762
|
+
lottieAnimation.value.play();
|
|
46763
|
+
}
|
|
46764
|
+
});
|
|
46765
|
+
watch(animationLink, (newVal) => {
|
|
46766
|
+
animationLinkC.value = newVal;
|
|
46767
|
+
if (lottieAnimation.value) {
|
|
46768
|
+
lottieAnimation.value.stop();
|
|
46769
|
+
lottieAnimation.value.play();
|
|
46770
|
+
}
|
|
46771
|
+
});
|
|
46750
46772
|
const play = () => {
|
|
46751
46773
|
if (lottieAnimation.value) {
|
|
46752
46774
|
lottieAnimation.value.stop();
|
|
@@ -46751,9 +46751,31 @@
|
|
|
46751
46751
|
const styleProps = useStylePick(props);
|
|
46752
46752
|
const handleClick = useComponentClick(props);
|
|
46753
46753
|
const lottieAnimation = vue.ref(null);
|
|
46754
|
-
const
|
|
46755
|
-
const
|
|
46756
|
-
const
|
|
46754
|
+
const { loop, delay, animationLink } = vue.toRefs(props);
|
|
46755
|
+
const loopC = vue.ref(props.loop);
|
|
46756
|
+
const delayC = vue.ref(props.delay);
|
|
46757
|
+
const animationLinkC = vue.ref(props.animationLink);
|
|
46758
|
+
vue.watch(loop, (newVal) => {
|
|
46759
|
+
loopC.value = newVal;
|
|
46760
|
+
if (lottieAnimation.value) {
|
|
46761
|
+
lottieAnimation.value.stop();
|
|
46762
|
+
lottieAnimation.value.play();
|
|
46763
|
+
}
|
|
46764
|
+
});
|
|
46765
|
+
vue.watch(delay, (newVal) => {
|
|
46766
|
+
delayC.value = newVal;
|
|
46767
|
+
if (lottieAnimation.value) {
|
|
46768
|
+
lottieAnimation.value.stop();
|
|
46769
|
+
lottieAnimation.value.play();
|
|
46770
|
+
}
|
|
46771
|
+
});
|
|
46772
|
+
vue.watch(animationLink, (newVal) => {
|
|
46773
|
+
animationLinkC.value = newVal;
|
|
46774
|
+
if (lottieAnimation.value) {
|
|
46775
|
+
lottieAnimation.value.stop();
|
|
46776
|
+
lottieAnimation.value.play();
|
|
46777
|
+
}
|
|
46778
|
+
});
|
|
46757
46779
|
const play = () => {
|
|
46758
46780
|
if (lottieAnimation.value) {
|
|
46759
46781
|
lottieAnimation.value.stop();
|