unika-components 1.0.343 → 1.0.344
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,24 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
.uni-video-component {
|
|
3
|
-
position: relative;
|
|
4
|
-
text-align: center;
|
|
5
|
-
}
|
|
6
|
-
.play-pause-button {
|
|
7
|
-
position: absolute;
|
|
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
1
|
|
|
23
2
|
.ele-text {
|
|
24
3
|
position: relative;
|
|
@@ -94,6 +73,39 @@
|
|
|
94
73
|
.uni-image-mask-wrapper {
|
|
95
74
|
display: inline-block;
|
|
96
75
|
}
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
.uni-calendar-component {
|
|
79
|
+
|
|
80
|
+
}
|
|
81
|
+
.slot-number {
|
|
82
|
+
position: absolute;
|
|
83
|
+
bottom: 2px;
|
|
84
|
+
left: 7px;
|
|
85
|
+
font-size: 12px;
|
|
86
|
+
color: #666
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.uni-video-component {
|
|
90
|
+
position: relative;
|
|
91
|
+
text-align: center;
|
|
92
|
+
}
|
|
93
|
+
.play-pause-button {
|
|
94
|
+
position: absolute;
|
|
95
|
+
top: 50%;
|
|
96
|
+
left: 50%;
|
|
97
|
+
transform: translate(-50%, -50%);
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
font-size: 2rem;
|
|
100
|
+
color: #fff;
|
|
101
|
+
background: rgba(0, 0, 0, 0.6);
|
|
102
|
+
border-radius: 50%;
|
|
103
|
+
padding: 10px;
|
|
104
|
+
transition: background 0.3s;
|
|
105
|
+
}
|
|
106
|
+
.play-pause-button:hover {
|
|
107
|
+
background: rgba(0, 0, 0, 0.8);
|
|
108
|
+
}
|
|
97
109
|
|
|
98
110
|
.work-container {
|
|
99
111
|
position: relative;
|
|
@@ -292,16 +304,26 @@
|
|
|
292
304
|
will-change: transform;
|
|
293
305
|
}
|
|
294
306
|
|
|
307
|
+
.like-button {
|
|
308
|
+
display: flex;
|
|
309
|
+
flex-direction: column;
|
|
310
|
+
align-items: center;
|
|
311
|
+
cursor: pointer;
|
|
312
|
+
}
|
|
295
313
|
|
|
296
|
-
.
|
|
314
|
+
.icon-heart {
|
|
315
|
+
font-size: 24px;
|
|
316
|
+
color: #e74c3c;
|
|
317
|
+
}
|
|
297
318
|
|
|
319
|
+
.liked {
|
|
320
|
+
color: #f00; /* 更改颜色以示已赞 */
|
|
298
321
|
}
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
color: #666
|
|
322
|
+
|
|
323
|
+
.like-count {
|
|
324
|
+
margin-top: 4px;
|
|
325
|
+
font-size: 16px;
|
|
326
|
+
color: #333;
|
|
305
327
|
}
|
|
306
328
|
|
|
307
329
|
.ant-input-number {
|
|
@@ -339,232 +361,23 @@
|
|
|
339
361
|
vertical-align: top;
|
|
340
362
|
}
|
|
341
363
|
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
.like-button {
|
|
346
|
-
display: flex;
|
|
347
|
-
flex-direction: column;
|
|
348
|
-
align-items: center;
|
|
349
|
-
cursor: pointer;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.icon-heart {
|
|
353
|
-
font-size: 24px;
|
|
354
|
-
color: #e74c3c;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
.liked {
|
|
358
|
-
color: #f00; /* 更改颜色以示已赞 */
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
.like-count {
|
|
362
|
-
margin-top: 4px;
|
|
363
|
-
font-size: 16px;
|
|
364
|
-
color: #333;
|
|
364
|
+
.uni-lotties-component {
|
|
365
|
+
width: 100%;
|
|
366
|
+
height: 100%;
|
|
365
367
|
}
|
|
366
368
|
|
|
367
369
|
.effect {
|
|
368
370
|
width: 100%;
|
|
369
371
|
height: 100%;
|
|
370
372
|
}
|
|
373
|
+
|
|
374
|
+
.uni-build-up-component {
|
|
375
|
+
}
|
|
371
376
|
|
|
372
377
|
.uni-svg-component {
|
|
373
378
|
display: inline-block;
|
|
374
379
|
}
|
|
375
380
|
|
|
376
|
-
.uni-lotties-component {
|
|
377
|
-
width: 100%;
|
|
378
|
-
height: 100%;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
.no-animation__card {
|
|
383
|
-
font-weight: 500;
|
|
384
|
-
font-size: var(--countdown-size, 2rem);
|
|
385
|
-
line-height: 1.5;
|
|
386
|
-
display: block;
|
|
387
|
-
color: var(--main-color, #EC685C);
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.flip-clock {
|
|
391
|
-
text-align: center;
|
|
392
|
-
perspective: 600px;
|
|
393
|
-
margin: 0 auto;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.flip-clock *,
|
|
397
|
-
.flip-clock *:before,
|
|
398
|
-
.flip-clock *:after {
|
|
399
|
-
box-sizing: border-box;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
.flip-clock__piece {
|
|
403
|
-
display: inline-block;
|
|
404
|
-
margin: 0 0.2vw;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
@media (min-width: 1000px) {
|
|
408
|
-
.flip-clock__piece {
|
|
409
|
-
margin: 0 5px;
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
.flip-clock__slot {
|
|
414
|
-
font-size: var(--label-size, 1rem);
|
|
415
|
-
line-height: 1.5;
|
|
416
|
-
display: block;
|
|
417
|
-
color: var(--label-color, #222222);
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.flip-card {
|
|
421
|
-
display: block;
|
|
422
|
-
position: relative;
|
|
423
|
-
padding-bottom: 0.72em; /* halfHeight */
|
|
424
|
-
font-size: var(--countdown-size, 2.25rem);
|
|
425
|
-
line-height: 0.95;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
@media (min-width: 1000px) {
|
|
429
|
-
.flip-clock__slot {
|
|
430
|
-
font-size: 1.2rem;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.flip-card {
|
|
434
|
-
font-size: 3rem;
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
.flip-card__top,
|
|
439
|
-
.flip-card__bottom,
|
|
440
|
-
.flip-card__back-bottom,
|
|
441
|
-
.flip-card__back::before,
|
|
442
|
-
.flip-card__back::after{
|
|
443
|
-
display: block;
|
|
444
|
-
height: 0.72em; /* halfHeight */
|
|
445
|
-
color: var(--main-color, #EC685C);
|
|
446
|
-
background: var(--main-flip-background-color, #222222);
|
|
447
|
-
padding: 0.23em 0.15em 0.4em;
|
|
448
|
-
border-radius: 0.15em 0.15em 0 0; /* borderRadius */
|
|
449
|
-
backface-visibility: hidden;
|
|
450
|
-
-webkit-backface-visibility: hidden;
|
|
451
|
-
transform-style: preserve-3d;
|
|
452
|
-
width: 2.1em;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
.flip-card__top-4digits,
|
|
456
|
-
.flip-card__bottom-4digits,
|
|
457
|
-
.flip-card__back-bottom-4digits,
|
|
458
|
-
.flip-card__back-4digits::before,
|
|
459
|
-
.flip-card__back-4digits::after {
|
|
460
|
-
display: block;
|
|
461
|
-
height: 0.72em; /* halfHeight */
|
|
462
|
-
color: var(--main-color, #EC685C);
|
|
463
|
-
background: var(--main-flip-background-color, #222222);
|
|
464
|
-
padding: 0.23em 0.15em 0.4em;
|
|
465
|
-
border-radius: 0.15em 0.15em 0 0; /* borderRadius */
|
|
466
|
-
backface-visibility: hidden;
|
|
467
|
-
-webkit-backface-visibility: hidden;
|
|
468
|
-
transform-style: preserve-3d;
|
|
469
|
-
width: 2.65em;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
.flip-card__bottom,
|
|
473
|
-
.flip-card__back-bottom,
|
|
474
|
-
.flip-card__bottom-4digits,
|
|
475
|
-
.flip-card__back-bottom-4digits {
|
|
476
|
-
color: var(--second-flip-color, #EC685C);
|
|
477
|
-
position: absolute;
|
|
478
|
-
top: 50%;
|
|
479
|
-
left: 0;
|
|
480
|
-
border-top: solid 1px var(--second-flip-background-color, #000);
|
|
481
|
-
background: var(--second-flip-background-color, #393939);
|
|
482
|
-
border-radius: 0 0 0.15em 0.15em; /* borderRadius */
|
|
483
|
-
pointer-events: none;
|
|
484
|
-
overflow: hidden;
|
|
485
|
-
z-index: 2;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
.flip-card__back-bottom,
|
|
489
|
-
.flip-card__back-bottom-4digits {
|
|
490
|
-
z-index: 1;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.flip-card__bottom::after,
|
|
494
|
-
.flip-card__back-bottom::after,
|
|
495
|
-
.flip-card__bottom-4digits::after,
|
|
496
|
-
.flip-card__back-bottom-4digits::after {
|
|
497
|
-
display: block;
|
|
498
|
-
margin-top: -0.72em; /* Negative halfHeight */
|
|
499
|
-
}
|
|
500
|
-
.flip-card__back::before,
|
|
501
|
-
.flip-card__bottom::after,
|
|
502
|
-
.flip-card__back-bottom::after,
|
|
503
|
-
.flip-card__back-4digits::before,
|
|
504
|
-
.flip-card__bottom-4digits::after,
|
|
505
|
-
.flip-card__back-bottom-4digits::after {
|
|
506
|
-
content: attr(data-value);
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
.flip-card__back,
|
|
510
|
-
.flip-card__back-4digits {
|
|
511
|
-
position: absolute;
|
|
512
|
-
top: 0;
|
|
513
|
-
height: 100%;
|
|
514
|
-
left: 0%;
|
|
515
|
-
pointer-events: none;
|
|
516
|
-
}
|
|
517
|
-
.flip-card__back::before,
|
|
518
|
-
.flip-card__back-4digits::before {
|
|
519
|
-
position: relative;
|
|
520
|
-
overflow: hidden;
|
|
521
|
-
z-index: -1;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.flip .flip-card__back::before,
|
|
525
|
-
.flip .flip-card__back-4digits::before {
|
|
526
|
-
z-index: 1;
|
|
527
|
-
animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
|
|
528
|
-
animation-fill-mode: both;
|
|
529
|
-
transform-origin: center bottom;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.flip .flip-card__bottom,
|
|
533
|
-
.flip .flip-card__bottom-4digits {
|
|
534
|
-
transform-origin: center top;
|
|
535
|
-
animation-fill-mode: both;
|
|
536
|
-
animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
|
|
537
|
-
}
|
|
538
|
-
@keyframes flipTop {
|
|
539
|
-
0% {
|
|
540
|
-
transform: rotateX(0deg);
|
|
541
|
-
z-index: 2;
|
|
542
|
-
}
|
|
543
|
-
0%, 99% {
|
|
544
|
-
opacity: 1;
|
|
545
|
-
}
|
|
546
|
-
100% {
|
|
547
|
-
transform: rotateX(-90deg);
|
|
548
|
-
opacity: 0;
|
|
549
|
-
}
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
@keyframes flipBottom {
|
|
553
|
-
0%, 50% {
|
|
554
|
-
z-index: -1;
|
|
555
|
-
transform: rotateX(90deg);
|
|
556
|
-
opacity: 0;
|
|
557
|
-
}
|
|
558
|
-
51% {
|
|
559
|
-
opacity: 1;
|
|
560
|
-
}
|
|
561
|
-
100% {
|
|
562
|
-
opacity: 1;
|
|
563
|
-
transform: rotateX(0deg);
|
|
564
|
-
z-index: 5;
|
|
565
|
-
}
|
|
566
|
-
}
|
|
567
|
-
|
|
568
381
|
.unika-calendar-box {
|
|
569
382
|
position: relative;
|
|
570
383
|
width: 325px !important;
|
|
@@ -825,3 +638,190 @@
|
|
|
825
638
|
padding: 0 0px;
|
|
826
639
|
border-bottom: 1px solid
|
|
827
640
|
}
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
.no-animation__card {
|
|
644
|
+
font-weight: 500;
|
|
645
|
+
font-size: var(--countdown-size, 2rem);
|
|
646
|
+
line-height: 1.5;
|
|
647
|
+
display: block;
|
|
648
|
+
color: var(--main-color, #EC685C);
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.flip-clock {
|
|
652
|
+
text-align: center;
|
|
653
|
+
perspective: 600px;
|
|
654
|
+
margin: 0 auto;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.flip-clock *,
|
|
658
|
+
.flip-clock *:before,
|
|
659
|
+
.flip-clock *:after {
|
|
660
|
+
box-sizing: border-box;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.flip-clock__piece {
|
|
664
|
+
display: inline-block;
|
|
665
|
+
margin: 0 0.2vw;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
@media (min-width: 1000px) {
|
|
669
|
+
.flip-clock__piece {
|
|
670
|
+
margin: 0 5px;
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.flip-clock__slot {
|
|
675
|
+
font-size: var(--label-size, 1rem);
|
|
676
|
+
line-height: 1.5;
|
|
677
|
+
display: block;
|
|
678
|
+
color: var(--label-color, #222222);
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.flip-card {
|
|
682
|
+
display: block;
|
|
683
|
+
position: relative;
|
|
684
|
+
padding-bottom: 0.72em; /* halfHeight */
|
|
685
|
+
font-size: var(--countdown-size, 2.25rem);
|
|
686
|
+
line-height: 0.95;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
@media (min-width: 1000px) {
|
|
690
|
+
.flip-clock__slot {
|
|
691
|
+
font-size: 1.2rem;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.flip-card {
|
|
695
|
+
font-size: 3rem;
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.flip-card__top,
|
|
700
|
+
.flip-card__bottom,
|
|
701
|
+
.flip-card__back-bottom,
|
|
702
|
+
.flip-card__back::before,
|
|
703
|
+
.flip-card__back::after{
|
|
704
|
+
display: block;
|
|
705
|
+
height: 0.72em; /* halfHeight */
|
|
706
|
+
color: var(--main-color, #EC685C);
|
|
707
|
+
background: var(--main-flip-background-color, #222222);
|
|
708
|
+
padding: 0.23em 0.15em 0.4em;
|
|
709
|
+
border-radius: 0.15em 0.15em 0 0; /* borderRadius */
|
|
710
|
+
backface-visibility: hidden;
|
|
711
|
+
-webkit-backface-visibility: hidden;
|
|
712
|
+
transform-style: preserve-3d;
|
|
713
|
+
width: 2.1em;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.flip-card__top-4digits,
|
|
717
|
+
.flip-card__bottom-4digits,
|
|
718
|
+
.flip-card__back-bottom-4digits,
|
|
719
|
+
.flip-card__back-4digits::before,
|
|
720
|
+
.flip-card__back-4digits::after {
|
|
721
|
+
display: block;
|
|
722
|
+
height: 0.72em; /* halfHeight */
|
|
723
|
+
color: var(--main-color, #EC685C);
|
|
724
|
+
background: var(--main-flip-background-color, #222222);
|
|
725
|
+
padding: 0.23em 0.15em 0.4em;
|
|
726
|
+
border-radius: 0.15em 0.15em 0 0; /* borderRadius */
|
|
727
|
+
backface-visibility: hidden;
|
|
728
|
+
-webkit-backface-visibility: hidden;
|
|
729
|
+
transform-style: preserve-3d;
|
|
730
|
+
width: 2.65em;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.flip-card__bottom,
|
|
734
|
+
.flip-card__back-bottom,
|
|
735
|
+
.flip-card__bottom-4digits,
|
|
736
|
+
.flip-card__back-bottom-4digits {
|
|
737
|
+
color: var(--second-flip-color, #EC685C);
|
|
738
|
+
position: absolute;
|
|
739
|
+
top: 50%;
|
|
740
|
+
left: 0;
|
|
741
|
+
border-top: solid 1px var(--second-flip-background-color, #000);
|
|
742
|
+
background: var(--second-flip-background-color, #393939);
|
|
743
|
+
border-radius: 0 0 0.15em 0.15em; /* borderRadius */
|
|
744
|
+
pointer-events: none;
|
|
745
|
+
overflow: hidden;
|
|
746
|
+
z-index: 2;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.flip-card__back-bottom,
|
|
750
|
+
.flip-card__back-bottom-4digits {
|
|
751
|
+
z-index: 1;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.flip-card__bottom::after,
|
|
755
|
+
.flip-card__back-bottom::after,
|
|
756
|
+
.flip-card__bottom-4digits::after,
|
|
757
|
+
.flip-card__back-bottom-4digits::after {
|
|
758
|
+
display: block;
|
|
759
|
+
margin-top: -0.72em; /* Negative halfHeight */
|
|
760
|
+
}
|
|
761
|
+
.flip-card__back::before,
|
|
762
|
+
.flip-card__bottom::after,
|
|
763
|
+
.flip-card__back-bottom::after,
|
|
764
|
+
.flip-card__back-4digits::before,
|
|
765
|
+
.flip-card__bottom-4digits::after,
|
|
766
|
+
.flip-card__back-bottom-4digits::after {
|
|
767
|
+
content: attr(data-value);
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.flip-card__back,
|
|
771
|
+
.flip-card__back-4digits {
|
|
772
|
+
position: absolute;
|
|
773
|
+
top: 0;
|
|
774
|
+
height: 100%;
|
|
775
|
+
left: 0%;
|
|
776
|
+
pointer-events: none;
|
|
777
|
+
}
|
|
778
|
+
.flip-card__back::before,
|
|
779
|
+
.flip-card__back-4digits::before {
|
|
780
|
+
position: relative;
|
|
781
|
+
overflow: hidden;
|
|
782
|
+
z-index: -1;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.flip .flip-card__back::before,
|
|
786
|
+
.flip .flip-card__back-4digits::before {
|
|
787
|
+
z-index: 1;
|
|
788
|
+
animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
|
|
789
|
+
animation-fill-mode: both;
|
|
790
|
+
transform-origin: center bottom;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
.flip .flip-card__bottom,
|
|
794
|
+
.flip .flip-card__bottom-4digits {
|
|
795
|
+
transform-origin: center top;
|
|
796
|
+
animation-fill-mode: both;
|
|
797
|
+
animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
|
|
798
|
+
}
|
|
799
|
+
@keyframes flipTop {
|
|
800
|
+
0% {
|
|
801
|
+
transform: rotateX(0deg);
|
|
802
|
+
z-index: 2;
|
|
803
|
+
}
|
|
804
|
+
0%, 99% {
|
|
805
|
+
opacity: 1;
|
|
806
|
+
}
|
|
807
|
+
100% {
|
|
808
|
+
transform: rotateX(-90deg);
|
|
809
|
+
opacity: 0;
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
@keyframes flipBottom {
|
|
814
|
+
0%, 50% {
|
|
815
|
+
z-index: -1;
|
|
816
|
+
transform: rotateX(90deg);
|
|
817
|
+
opacity: 0;
|
|
818
|
+
}
|
|
819
|
+
51% {
|
|
820
|
+
opacity: 1;
|
|
821
|
+
}
|
|
822
|
+
100% {
|
|
823
|
+
opacity: 1;
|
|
824
|
+
transform: rotateX(0deg);
|
|
825
|
+
z-index: 5;
|
|
826
|
+
}
|
|
827
|
+
}
|
|
@@ -102,7 +102,8 @@ function render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
102
102
|
borderStyle: _ctx.css.borderStyle,
|
|
103
103
|
borderWidth: `${_ctx.css.borderWidth || 0}px`,
|
|
104
104
|
boxShadow: _ctx.boxShadowStyle,
|
|
105
|
-
opacity: _ctx.css.opacity || 1
|
|
105
|
+
opacity: _ctx.css.opacity || 1,
|
|
106
|
+
animation: _ctx.css.animation
|
|
106
107
|
})
|
|
107
108
|
}, [
|
|
108
109
|
createElementVNode("div", {
|
|
@@ -109,7 +109,8 @@
|
|
|
109
109
|
borderStyle: _ctx.css.borderStyle,
|
|
110
110
|
borderWidth: `${_ctx.css.borderWidth || 0}px`,
|
|
111
111
|
boxShadow: _ctx.boxShadowStyle,
|
|
112
|
-
opacity: _ctx.css.opacity || 1
|
|
112
|
+
opacity: _ctx.css.opacity || 1,
|
|
113
|
+
animation: _ctx.css.animation
|
|
113
114
|
})
|
|
114
115
|
}, [
|
|
115
116
|
vue.createElementVNode("div", {
|