@zyzgroup/core-web 0.0.58 → 0.0.60
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/README.md +0 -0
- package/dist/animate.css +221 -285
- package/dist/animate.min.css +8 -0
- package/dist/zyzgroup_core_web.iife.js +23 -24
- package/dist/zyzgroup_core_web.iife.js.map +1 -1
- package/dist/zyzgroup_core_web.js +10359 -19790
- package/dist/zyzgroup_core_web.js.map +1 -1
- package/dist/zyzgroup_core_web.umd.cjs +23 -24
- package/dist/zyzgroup_core_web.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/types/animate/AnimateOperation.d.ts +18 -5
- package/types/animate/AnimateOperation.d.ts.map +1 -1
- package/types/animate/animateInWeb.d.ts +11 -0
- package/types/animate/animateInWeb.d.ts.map +1 -1
- package/types/animate/tween/index.d.ts +1 -0
- package/types/animate/tween/index.d.ts.map +1 -1
- package/types/canvas/CanvasOperation.d.ts +2 -1
- package/types/canvas/CanvasOperation.d.ts.map +1 -1
- package/types/dom/DOMEventBus.d.ts +81 -0
- package/types/dom/DOMEventBus.d.ts.map +1 -0
- package/types/dom/DOMKey.d.ts +1 -1
- package/types/dom/DOMKey.d.ts.map +1 -1
- package/types/dom/index.d.ts +1 -2
- package/types/dom/index.d.ts.map +1 -1
- package/types/index.d.ts +0 -1
- package/types/index.d.ts.map +1 -1
- package/types/math/Matrix.d.ts.map +1 -1
- package/types/math/math.d.ts +9 -2
- package/types/math/math.d.ts.map +1 -1
- package/types/position.d.ts +2 -5
- package/types/position.d.ts.map +1 -1
- package/types/shape/Point.d.ts +2 -6
- package/types/shape/Point.d.ts.map +1 -1
- package/types/shape/SportBase.d.ts +4 -1
- package/types/shape/SportBase.d.ts.map +1 -1
- package/types/shape/YZRaphael.d.ts.map +1 -1
- package/types/shape/shapes/ShapeArrow.d.ts +4 -4
- package/types/shape/shapes/ShapeArrow.d.ts.map +1 -1
- package/types/shape/shapes/ShapeBall.d.ts +4 -6
- package/types/shape/shapes/ShapeBall.d.ts.map +1 -1
- package/types/shape/shapes/ShapeBase.d.ts +19 -10
- package/types/shape/shapes/ShapeBase.d.ts.map +1 -1
- package/types/shape/shapes/ShapeLight.d.ts.map +1 -1
- package/types/shape/shapes/ShapeLine.d.ts +17 -12
- package/types/shape/shapes/ShapeLine.d.ts.map +1 -1
- package/types/shape/shapes/ShapePoint3d.d.ts.map +1 -1
- package/types/shape/shapes/ShapeRect.d.ts +7 -7
- package/types/shape/shapes/ShapeRect.d.ts.map +1 -1
- package/types/shape/shapes/ShapeSlider.d.ts.map +1 -1
- package/types/svg/rappar.d.ts.map +1 -1
- package/types/video.d.ts +1 -1
- package/types/video.d.ts.map +1 -1
- package/types/dom/DOMCanvas/DOMCanvas.d.ts +0 -40
- package/types/dom/DOMCanvas/DOMCanvas.d.ts.map +0 -1
- package/types/dom/DOMCanvas/DOMCanvasKonva.d.ts +0 -1
- package/types/dom/DOMCanvas/DOMCanvasKonva.d.ts.map +0 -1
- package/types/dom/DOMCanvas/index.d.ts +0 -2
- package/types/dom/DOMCanvas/index.d.ts.map +0 -1
- package/types/dom/DOMCanvas/services/Keyboard.d.ts +0 -11
- package/types/dom/DOMCanvas/services/Keyboard.d.ts.map +0 -1
- package/types/dom/DOMCanvas/services/Mouse.d.ts +0 -13
- package/types/dom/DOMCanvas/services/Mouse.d.ts.map +0 -1
- package/types/dom/DOMCanvas/services/Tooler.d.ts +0 -1
- package/types/dom/DOMCanvas/services/Tooler.d.ts.map +0 -1
- package/types/dom/DOMCanvas/types.d.ts +0 -36
- package/types/dom/DOMCanvas/types.d.ts.map +0 -1
- package/types/dom/DOMMouse.d.ts +0 -43
- package/types/dom/DOMMouse.d.ts.map +0 -1
- package/types/svg/elemental.d.ts +0 -2
- package/types/svg/elemental.d.ts.map +0 -1
- package/types/svg/eve.d.ts +0 -14
- package/types/svg/eve.d.ts.map +0 -1
package/dist/animate.css
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
@charset "UTF-8";
|
|
1
3
|
/*!
|
|
2
4
|
* animate.css - https://animate.style/
|
|
3
5
|
* Version - 4.1.1
|
|
@@ -5,7 +7,109 @@
|
|
|
5
7
|
*
|
|
6
8
|
* Copyright (c) 2022 Animate.css
|
|
7
9
|
*/
|
|
10
|
+
:root {
|
|
11
|
+
--animate-duration: 1s;
|
|
12
|
+
--animate-delay: 1s;
|
|
13
|
+
--animate-repeat: 1;
|
|
14
|
+
}
|
|
15
|
+
.animate__animated {
|
|
16
|
+
-webkit-animation-duration: 1s;
|
|
17
|
+
animation-duration: 1s;
|
|
18
|
+
-webkit-animation-duration: var(--animate-duration);
|
|
19
|
+
animation-duration: var(--animate-duration);
|
|
20
|
+
-webkit-animation-fill-mode: both;
|
|
21
|
+
animation-fill-mode: both;
|
|
22
|
+
}
|
|
23
|
+
.animate__animated.animate__infinite {
|
|
24
|
+
-webkit-animation-iteration-count: infinite;
|
|
25
|
+
animation-iteration-count: infinite;
|
|
26
|
+
}
|
|
27
|
+
.animate__animated.animate__repeat-1 {
|
|
28
|
+
-webkit-animation-iteration-count: 1;
|
|
29
|
+
animation-iteration-count: 1;
|
|
30
|
+
-webkit-animation-iteration-count: var(--animate-repeat);
|
|
31
|
+
animation-iteration-count: var(--animate-repeat);
|
|
32
|
+
}
|
|
33
|
+
.animate__animated.animate__repeat-2 {
|
|
34
|
+
-webkit-animation-iteration-count: calc(1 * 2);
|
|
35
|
+
animation-iteration-count: calc(1 * 2);
|
|
36
|
+
-webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
|
|
37
|
+
animation-iteration-count: calc(var(--animate-repeat) * 2);
|
|
38
|
+
}
|
|
39
|
+
.animate__animated.animate__repeat-3 {
|
|
40
|
+
-webkit-animation-iteration-count: calc(1 * 3);
|
|
41
|
+
animation-iteration-count: calc(1 * 3);
|
|
42
|
+
-webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
|
|
43
|
+
animation-iteration-count: calc(var(--animate-repeat) * 3);
|
|
44
|
+
}
|
|
45
|
+
.animate__animated.animate__delay-1s {
|
|
46
|
+
-webkit-animation-delay: 1s;
|
|
47
|
+
animation-delay: 1s;
|
|
48
|
+
-webkit-animation-delay: var(--animate-delay);
|
|
49
|
+
animation-delay: var(--animate-delay);
|
|
50
|
+
}
|
|
51
|
+
.animate__animated.animate__delay-2s {
|
|
52
|
+
-webkit-animation-delay: calc(1s * 2);
|
|
53
|
+
animation-delay: calc(1s * 2);
|
|
54
|
+
-webkit-animation-delay: calc(var(--animate-delay) * 2);
|
|
55
|
+
animation-delay: calc(var(--animate-delay) * 2);
|
|
56
|
+
}
|
|
57
|
+
.animate__animated.animate__delay-3s {
|
|
58
|
+
-webkit-animation-delay: calc(1s * 3);
|
|
59
|
+
animation-delay: calc(1s * 3);
|
|
60
|
+
-webkit-animation-delay: calc(var(--animate-delay) * 3);
|
|
61
|
+
animation-delay: calc(var(--animate-delay) * 3);
|
|
62
|
+
}
|
|
63
|
+
.animate__animated.animate__delay-4s {
|
|
64
|
+
-webkit-animation-delay: calc(1s * 4);
|
|
65
|
+
animation-delay: calc(1s * 4);
|
|
66
|
+
-webkit-animation-delay: calc(var(--animate-delay) * 4);
|
|
67
|
+
animation-delay: calc(var(--animate-delay) * 4);
|
|
68
|
+
}
|
|
69
|
+
.animate__animated.animate__delay-5s {
|
|
70
|
+
-webkit-animation-delay: calc(1s * 5);
|
|
71
|
+
animation-delay: calc(1s * 5);
|
|
72
|
+
-webkit-animation-delay: calc(var(--animate-delay) * 5);
|
|
73
|
+
animation-delay: calc(var(--animate-delay) * 5);
|
|
74
|
+
}
|
|
75
|
+
.animate__animated.animate__faster {
|
|
76
|
+
-webkit-animation-duration: calc(1s / 2);
|
|
77
|
+
animation-duration: calc(1s / 2);
|
|
78
|
+
-webkit-animation-duration: calc(var(--animate-duration) / 2);
|
|
79
|
+
animation-duration: calc(var(--animate-duration) / 2);
|
|
80
|
+
}
|
|
81
|
+
.animate__animated.animate__fast {
|
|
82
|
+
-webkit-animation-duration: calc(1s * 0.8);
|
|
83
|
+
animation-duration: calc(1s * 0.8);
|
|
84
|
+
-webkit-animation-duration: calc(var(--animate-duration) * 0.8);
|
|
85
|
+
animation-duration: calc(var(--animate-duration) * 0.8);
|
|
86
|
+
}
|
|
87
|
+
.animate__animated.animate__slow {
|
|
88
|
+
-webkit-animation-duration: calc(1s * 2);
|
|
89
|
+
animation-duration: calc(1s * 2);
|
|
90
|
+
-webkit-animation-duration: calc(var(--animate-duration) * 2);
|
|
91
|
+
animation-duration: calc(var(--animate-duration) * 2);
|
|
92
|
+
}
|
|
93
|
+
.animate__animated.animate__slower {
|
|
94
|
+
-webkit-animation-duration: calc(1s * 3);
|
|
95
|
+
animation-duration: calc(1s * 3);
|
|
96
|
+
-webkit-animation-duration: calc(var(--animate-duration) * 3);
|
|
97
|
+
animation-duration: calc(var(--animate-duration) * 3);
|
|
98
|
+
}
|
|
99
|
+
@media print, (prefers-reduced-motion: reduce) {
|
|
100
|
+
.animate__animated {
|
|
101
|
+
-webkit-animation-duration: 1ms !important;
|
|
102
|
+
animation-duration: 1ms !important;
|
|
103
|
+
-webkit-transition-duration: 1ms !important;
|
|
104
|
+
transition-duration: 1ms !important;
|
|
105
|
+
-webkit-animation-iteration-count: 1 !important;
|
|
106
|
+
animation-iteration-count: 1 !important;
|
|
107
|
+
}
|
|
8
108
|
|
|
109
|
+
.animate__animated[class*='Out'] {
|
|
110
|
+
opacity: 0;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
9
113
|
/* Attention seekers */
|
|
10
114
|
@-webkit-keyframes bounce {
|
|
11
115
|
from,
|
|
@@ -83,7 +187,7 @@
|
|
|
83
187
|
transform: translate3d(0, -4px, 0) scaleY(1.02);
|
|
84
188
|
}
|
|
85
189
|
}
|
|
86
|
-
.
|
|
190
|
+
.animate__bounce {
|
|
87
191
|
-webkit-animation-name: bounce;
|
|
88
192
|
animation-name: bounce;
|
|
89
193
|
-webkit-transform-origin: center bottom;
|
|
@@ -113,7 +217,7 @@
|
|
|
113
217
|
opacity: 0;
|
|
114
218
|
}
|
|
115
219
|
}
|
|
116
|
-
.
|
|
220
|
+
.animate__flash {
|
|
117
221
|
-webkit-animation-name: flash;
|
|
118
222
|
animation-name: flash;
|
|
119
223
|
}
|
|
@@ -150,7 +254,7 @@
|
|
|
150
254
|
transform: scale3d(1, 1, 1);
|
|
151
255
|
}
|
|
152
256
|
}
|
|
153
|
-
.
|
|
257
|
+
.animate__pulse {
|
|
154
258
|
-webkit-animation-name: pulse;
|
|
155
259
|
animation-name: pulse;
|
|
156
260
|
-webkit-animation-timing-function: ease-in-out;
|
|
@@ -228,7 +332,7 @@
|
|
|
228
332
|
transform: scale3d(1, 1, 1);
|
|
229
333
|
}
|
|
230
334
|
}
|
|
231
|
-
.
|
|
335
|
+
.animate__rubberBand {
|
|
232
336
|
-webkit-animation-name: rubberBand;
|
|
233
337
|
animation-name: rubberBand;
|
|
234
338
|
}
|
|
@@ -280,7 +384,7 @@
|
|
|
280
384
|
transform: translate3d(10px, 0, 0);
|
|
281
385
|
}
|
|
282
386
|
}
|
|
283
|
-
.
|
|
387
|
+
.animate__shakeX {
|
|
284
388
|
-webkit-animation-name: shakeX;
|
|
285
389
|
animation-name: shakeX;
|
|
286
390
|
}
|
|
@@ -332,7 +436,7 @@
|
|
|
332
436
|
transform: translate3d(0, 10px, 0);
|
|
333
437
|
}
|
|
334
438
|
}
|
|
335
|
-
.
|
|
439
|
+
.animate__shakeY {
|
|
336
440
|
-webkit-animation-name: shakeY;
|
|
337
441
|
animation-name: shakeY;
|
|
338
442
|
}
|
|
@@ -398,7 +502,7 @@
|
|
|
398
502
|
transform: translateX(0);
|
|
399
503
|
}
|
|
400
504
|
}
|
|
401
|
-
.
|
|
505
|
+
.animate__headShake {
|
|
402
506
|
-webkit-animation-timing-function: ease-in-out;
|
|
403
507
|
animation-timing-function: ease-in-out;
|
|
404
508
|
-webkit-animation-name: headShake;
|
|
@@ -456,7 +560,7 @@
|
|
|
456
560
|
transform: rotate3d(0, 0, 1, 0deg);
|
|
457
561
|
}
|
|
458
562
|
}
|
|
459
|
-
.
|
|
563
|
+
.animate__swing {
|
|
460
564
|
-webkit-transform-origin: top center;
|
|
461
565
|
transform-origin: top center;
|
|
462
566
|
-webkit-animation-name: swing;
|
|
@@ -526,7 +630,7 @@
|
|
|
526
630
|
transform: scale3d(1, 1, 1);
|
|
527
631
|
}
|
|
528
632
|
}
|
|
529
|
-
.
|
|
633
|
+
.animate__tada {
|
|
530
634
|
-webkit-animation-name: tada;
|
|
531
635
|
animation-name: tada;
|
|
532
636
|
}
|
|
@@ -603,7 +707,7 @@
|
|
|
603
707
|
transform: translate3d(0, 0, 0);
|
|
604
708
|
}
|
|
605
709
|
}
|
|
606
|
-
.
|
|
710
|
+
.animate__wobble {
|
|
607
711
|
-webkit-animation-name: wobble;
|
|
608
712
|
animation-name: wobble;
|
|
609
713
|
}
|
|
@@ -693,7 +797,7 @@
|
|
|
693
797
|
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
|
|
694
798
|
}
|
|
695
799
|
}
|
|
696
|
-
.
|
|
800
|
+
.animate__jello {
|
|
697
801
|
-webkit-animation-name: jello;
|
|
698
802
|
animation-name: jello;
|
|
699
803
|
-webkit-transform-origin: center;
|
|
@@ -751,7 +855,7 @@
|
|
|
751
855
|
transform: scale(1);
|
|
752
856
|
}
|
|
753
857
|
}
|
|
754
|
-
.
|
|
858
|
+
.animate__heartBeat {
|
|
755
859
|
-webkit-animation-name: heartBeat;
|
|
756
860
|
animation-name: heartBeat;
|
|
757
861
|
-webkit-animation-duration: calc(1s * 1.3);
|
|
@@ -800,7 +904,7 @@
|
|
|
800
904
|
opacity: 1;
|
|
801
905
|
}
|
|
802
906
|
}
|
|
803
|
-
.
|
|
907
|
+
.animate__backInDown {
|
|
804
908
|
-webkit-animation-name: backInDown;
|
|
805
909
|
animation-name: backInDown;
|
|
806
910
|
}
|
|
@@ -842,7 +946,7 @@
|
|
|
842
946
|
opacity: 1;
|
|
843
947
|
}
|
|
844
948
|
}
|
|
845
|
-
.
|
|
949
|
+
.animate__backInLeft {
|
|
846
950
|
-webkit-animation-name: backInLeft;
|
|
847
951
|
animation-name: backInLeft;
|
|
848
952
|
}
|
|
@@ -884,7 +988,7 @@
|
|
|
884
988
|
opacity: 1;
|
|
885
989
|
}
|
|
886
990
|
}
|
|
887
|
-
.
|
|
991
|
+
.animate__backInRight {
|
|
888
992
|
-webkit-animation-name: backInRight;
|
|
889
993
|
animation-name: backInRight;
|
|
890
994
|
}
|
|
@@ -926,7 +1030,7 @@
|
|
|
926
1030
|
opacity: 1;
|
|
927
1031
|
}
|
|
928
1032
|
}
|
|
929
|
-
.
|
|
1033
|
+
.animate__backInUp {
|
|
930
1034
|
-webkit-animation-name: backInUp;
|
|
931
1035
|
animation-name: backInUp;
|
|
932
1036
|
}
|
|
@@ -969,7 +1073,7 @@
|
|
|
969
1073
|
opacity: 0.7;
|
|
970
1074
|
}
|
|
971
1075
|
}
|
|
972
|
-
.
|
|
1076
|
+
.animate__backOutDown {
|
|
973
1077
|
-webkit-animation-name: backOutDown;
|
|
974
1078
|
animation-name: backOutDown;
|
|
975
1079
|
}
|
|
@@ -1011,7 +1115,7 @@
|
|
|
1011
1115
|
opacity: 0.7;
|
|
1012
1116
|
}
|
|
1013
1117
|
}
|
|
1014
|
-
.
|
|
1118
|
+
.animate__backOutLeft {
|
|
1015
1119
|
-webkit-animation-name: backOutLeft;
|
|
1016
1120
|
animation-name: backOutLeft;
|
|
1017
1121
|
}
|
|
@@ -1053,7 +1157,7 @@
|
|
|
1053
1157
|
opacity: 0.7;
|
|
1054
1158
|
}
|
|
1055
1159
|
}
|
|
1056
|
-
.
|
|
1160
|
+
.animate__backOutRight {
|
|
1057
1161
|
-webkit-animation-name: backOutRight;
|
|
1058
1162
|
animation-name: backOutRight;
|
|
1059
1163
|
}
|
|
@@ -1095,7 +1199,7 @@
|
|
|
1095
1199
|
opacity: 0.7;
|
|
1096
1200
|
}
|
|
1097
1201
|
}
|
|
1098
|
-
.
|
|
1202
|
+
.animate__backOutUp {
|
|
1099
1203
|
-webkit-animation-name: backOutUp;
|
|
1100
1204
|
animation-name: backOutUp;
|
|
1101
1205
|
}
|
|
@@ -1188,7 +1292,7 @@
|
|
|
1188
1292
|
transform: scale3d(1, 1, 1);
|
|
1189
1293
|
}
|
|
1190
1294
|
}
|
|
1191
|
-
.
|
|
1295
|
+
.animate__bounceIn {
|
|
1192
1296
|
-webkit-animation-duration: calc(1s * 0.75);
|
|
1193
1297
|
animation-duration: calc(1s * 0.75);
|
|
1194
1298
|
-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
|
|
@@ -1270,7 +1374,7 @@
|
|
|
1270
1374
|
transform: translate3d(0, 0, 0);
|
|
1271
1375
|
}
|
|
1272
1376
|
}
|
|
1273
|
-
.
|
|
1377
|
+
.animate__bounceInDown {
|
|
1274
1378
|
-webkit-animation-name: bounceInDown;
|
|
1275
1379
|
animation-name: bounceInDown;
|
|
1276
1380
|
}
|
|
@@ -1348,7 +1452,7 @@
|
|
|
1348
1452
|
transform: translate3d(0, 0, 0);
|
|
1349
1453
|
}
|
|
1350
1454
|
}
|
|
1351
|
-
.
|
|
1455
|
+
.animate__bounceInLeft {
|
|
1352
1456
|
-webkit-animation-name: bounceInLeft;
|
|
1353
1457
|
animation-name: bounceInLeft;
|
|
1354
1458
|
}
|
|
@@ -1426,7 +1530,7 @@
|
|
|
1426
1530
|
transform: translate3d(0, 0, 0);
|
|
1427
1531
|
}
|
|
1428
1532
|
}
|
|
1429
|
-
.
|
|
1533
|
+
.animate__bounceInRight {
|
|
1430
1534
|
-webkit-animation-name: bounceInRight;
|
|
1431
1535
|
animation-name: bounceInRight;
|
|
1432
1536
|
}
|
|
@@ -1504,7 +1608,7 @@
|
|
|
1504
1608
|
transform: translate3d(0, 0, 0);
|
|
1505
1609
|
}
|
|
1506
1610
|
}
|
|
1507
|
-
.
|
|
1611
|
+
.animate__bounceInUp {
|
|
1508
1612
|
-webkit-animation-name: bounceInUp;
|
|
1509
1613
|
animation-name: bounceInUp;
|
|
1510
1614
|
}
|
|
@@ -1547,7 +1651,7 @@
|
|
|
1547
1651
|
transform: scale3d(0.3, 0.3, 0.3);
|
|
1548
1652
|
}
|
|
1549
1653
|
}
|
|
1550
|
-
.
|
|
1654
|
+
.animate__bounceOut {
|
|
1551
1655
|
-webkit-animation-duration: calc(1s * 0.75);
|
|
1552
1656
|
animation-duration: calc(1s * 0.75);
|
|
1553
1657
|
-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
|
|
@@ -1593,7 +1697,7 @@
|
|
|
1593
1697
|
transform: translate3d(0, 2000px, 0) scaleY(3);
|
|
1594
1698
|
}
|
|
1595
1699
|
}
|
|
1596
|
-
.
|
|
1700
|
+
.animate__bounceOutDown {
|
|
1597
1701
|
-webkit-animation-name: bounceOutDown;
|
|
1598
1702
|
animation-name: bounceOutDown;
|
|
1599
1703
|
}
|
|
@@ -1623,7 +1727,7 @@
|
|
|
1623
1727
|
transform: translate3d(-2000px, 0, 0) scaleX(2);
|
|
1624
1728
|
}
|
|
1625
1729
|
}
|
|
1626
|
-
.
|
|
1730
|
+
.animate__bounceOutLeft {
|
|
1627
1731
|
-webkit-animation-name: bounceOutLeft;
|
|
1628
1732
|
animation-name: bounceOutLeft;
|
|
1629
1733
|
}
|
|
@@ -1653,7 +1757,7 @@
|
|
|
1653
1757
|
transform: translate3d(2000px, 0, 0) scaleX(2);
|
|
1654
1758
|
}
|
|
1655
1759
|
}
|
|
1656
|
-
.
|
|
1760
|
+
.animate__bounceOutRight {
|
|
1657
1761
|
-webkit-animation-name: bounceOutRight;
|
|
1658
1762
|
animation-name: bounceOutRight;
|
|
1659
1763
|
}
|
|
@@ -1695,7 +1799,7 @@
|
|
|
1695
1799
|
transform: translate3d(0, -2000px, 0) scaleY(3);
|
|
1696
1800
|
}
|
|
1697
1801
|
}
|
|
1698
|
-
.
|
|
1802
|
+
.animate__bounceOutUp {
|
|
1699
1803
|
-webkit-animation-name: bounceOutUp;
|
|
1700
1804
|
animation-name: bounceOutUp;
|
|
1701
1805
|
}
|
|
@@ -1718,7 +1822,7 @@
|
|
|
1718
1822
|
opacity: 1;
|
|
1719
1823
|
}
|
|
1720
1824
|
}
|
|
1721
|
-
.
|
|
1825
|
+
.animate__fadeIn {
|
|
1722
1826
|
-webkit-animation-name: fadeIn;
|
|
1723
1827
|
animation-name: fadeIn;
|
|
1724
1828
|
}
|
|
@@ -1748,7 +1852,7 @@
|
|
|
1748
1852
|
transform: translate3d(0, 0, 0);
|
|
1749
1853
|
}
|
|
1750
1854
|
}
|
|
1751
|
-
.
|
|
1855
|
+
.animate__fadeInDown {
|
|
1752
1856
|
-webkit-animation-name: fadeInDown;
|
|
1753
1857
|
animation-name: fadeInDown;
|
|
1754
1858
|
}
|
|
@@ -1778,7 +1882,7 @@
|
|
|
1778
1882
|
transform: translate3d(0, 0, 0);
|
|
1779
1883
|
}
|
|
1780
1884
|
}
|
|
1781
|
-
.
|
|
1885
|
+
.animate__fadeInDownBig {
|
|
1782
1886
|
-webkit-animation-name: fadeInDownBig;
|
|
1783
1887
|
animation-name: fadeInDownBig;
|
|
1784
1888
|
}
|
|
@@ -1808,7 +1912,7 @@
|
|
|
1808
1912
|
transform: translate3d(0, 0, 0);
|
|
1809
1913
|
}
|
|
1810
1914
|
}
|
|
1811
|
-
.
|
|
1915
|
+
.animate__fadeInLeft {
|
|
1812
1916
|
-webkit-animation-name: fadeInLeft;
|
|
1813
1917
|
animation-name: fadeInLeft;
|
|
1814
1918
|
}
|
|
@@ -1838,7 +1942,7 @@
|
|
|
1838
1942
|
transform: translate3d(0, 0, 0);
|
|
1839
1943
|
}
|
|
1840
1944
|
}
|
|
1841
|
-
.
|
|
1945
|
+
.animate__fadeInLeftBig {
|
|
1842
1946
|
-webkit-animation-name: fadeInLeftBig;
|
|
1843
1947
|
animation-name: fadeInLeftBig;
|
|
1844
1948
|
}
|
|
@@ -1868,7 +1972,7 @@
|
|
|
1868
1972
|
transform: translate3d(0, 0, 0);
|
|
1869
1973
|
}
|
|
1870
1974
|
}
|
|
1871
|
-
.
|
|
1975
|
+
.animate__fadeInRight {
|
|
1872
1976
|
-webkit-animation-name: fadeInRight;
|
|
1873
1977
|
animation-name: fadeInRight;
|
|
1874
1978
|
}
|
|
@@ -1898,7 +2002,7 @@
|
|
|
1898
2002
|
transform: translate3d(0, 0, 0);
|
|
1899
2003
|
}
|
|
1900
2004
|
}
|
|
1901
|
-
.
|
|
2005
|
+
.animate__fadeInRightBig {
|
|
1902
2006
|
-webkit-animation-name: fadeInRightBig;
|
|
1903
2007
|
animation-name: fadeInRightBig;
|
|
1904
2008
|
}
|
|
@@ -1928,7 +2032,7 @@
|
|
|
1928
2032
|
transform: translate3d(0, 0, 0);
|
|
1929
2033
|
}
|
|
1930
2034
|
}
|
|
1931
|
-
.
|
|
2035
|
+
.animate__fadeInUp {
|
|
1932
2036
|
-webkit-animation-name: fadeInUp;
|
|
1933
2037
|
animation-name: fadeInUp;
|
|
1934
2038
|
}
|
|
@@ -1958,7 +2062,7 @@
|
|
|
1958
2062
|
transform: translate3d(0, 0, 0);
|
|
1959
2063
|
}
|
|
1960
2064
|
}
|
|
1961
|
-
.
|
|
2065
|
+
.animate__fadeInUpBig {
|
|
1962
2066
|
-webkit-animation-name: fadeInUpBig;
|
|
1963
2067
|
animation-name: fadeInUpBig;
|
|
1964
2068
|
}
|
|
@@ -1986,7 +2090,7 @@
|
|
|
1986
2090
|
transform: translate3d(0, 0, 0);
|
|
1987
2091
|
}
|
|
1988
2092
|
}
|
|
1989
|
-
.
|
|
2093
|
+
.animate__fadeInTopLeft {
|
|
1990
2094
|
-webkit-animation-name: fadeInTopLeft;
|
|
1991
2095
|
animation-name: fadeInTopLeft;
|
|
1992
2096
|
}
|
|
@@ -2014,7 +2118,7 @@
|
|
|
2014
2118
|
transform: translate3d(0, 0, 0);
|
|
2015
2119
|
}
|
|
2016
2120
|
}
|
|
2017
|
-
.
|
|
2121
|
+
.animate__fadeInTopRight {
|
|
2018
2122
|
-webkit-animation-name: fadeInTopRight;
|
|
2019
2123
|
animation-name: fadeInTopRight;
|
|
2020
2124
|
}
|
|
@@ -2042,7 +2146,7 @@
|
|
|
2042
2146
|
transform: translate3d(0, 0, 0);
|
|
2043
2147
|
}
|
|
2044
2148
|
}
|
|
2045
|
-
.
|
|
2149
|
+
.animate__fadeInBottomLeft {
|
|
2046
2150
|
-webkit-animation-name: fadeInBottomLeft;
|
|
2047
2151
|
animation-name: fadeInBottomLeft;
|
|
2048
2152
|
}
|
|
@@ -2070,7 +2174,7 @@
|
|
|
2070
2174
|
transform: translate3d(0, 0, 0);
|
|
2071
2175
|
}
|
|
2072
2176
|
}
|
|
2073
|
-
.
|
|
2177
|
+
.animate__fadeInBottomRight {
|
|
2074
2178
|
-webkit-animation-name: fadeInBottomRight;
|
|
2075
2179
|
animation-name: fadeInBottomRight;
|
|
2076
2180
|
}
|
|
@@ -2093,7 +2197,7 @@
|
|
|
2093
2197
|
opacity: 0;
|
|
2094
2198
|
}
|
|
2095
2199
|
}
|
|
2096
|
-
.
|
|
2200
|
+
.animate__fadeOut {
|
|
2097
2201
|
-webkit-animation-name: fadeOut;
|
|
2098
2202
|
animation-name: fadeOut;
|
|
2099
2203
|
}
|
|
@@ -2119,7 +2223,7 @@
|
|
|
2119
2223
|
transform: translate3d(0, 100%, 0);
|
|
2120
2224
|
}
|
|
2121
2225
|
}
|
|
2122
|
-
.
|
|
2226
|
+
.animate__fadeOutDown {
|
|
2123
2227
|
-webkit-animation-name: fadeOutDown;
|
|
2124
2228
|
animation-name: fadeOutDown;
|
|
2125
2229
|
}
|
|
@@ -2145,7 +2249,7 @@
|
|
|
2145
2249
|
transform: translate3d(0, 2000px, 0);
|
|
2146
2250
|
}
|
|
2147
2251
|
}
|
|
2148
|
-
.
|
|
2252
|
+
.animate__fadeOutDownBig {
|
|
2149
2253
|
-webkit-animation-name: fadeOutDownBig;
|
|
2150
2254
|
animation-name: fadeOutDownBig;
|
|
2151
2255
|
}
|
|
@@ -2171,7 +2275,7 @@
|
|
|
2171
2275
|
transform: translate3d(-100%, 0, 0);
|
|
2172
2276
|
}
|
|
2173
2277
|
}
|
|
2174
|
-
.
|
|
2278
|
+
.animate__fadeOutLeft {
|
|
2175
2279
|
-webkit-animation-name: fadeOutLeft;
|
|
2176
2280
|
animation-name: fadeOutLeft;
|
|
2177
2281
|
}
|
|
@@ -2197,7 +2301,7 @@
|
|
|
2197
2301
|
transform: translate3d(-2000px, 0, 0);
|
|
2198
2302
|
}
|
|
2199
2303
|
}
|
|
2200
|
-
.
|
|
2304
|
+
.animate__fadeOutLeftBig {
|
|
2201
2305
|
-webkit-animation-name: fadeOutLeftBig;
|
|
2202
2306
|
animation-name: fadeOutLeftBig;
|
|
2203
2307
|
}
|
|
@@ -2223,7 +2327,7 @@
|
|
|
2223
2327
|
transform: translate3d(100%, 0, 0);
|
|
2224
2328
|
}
|
|
2225
2329
|
}
|
|
2226
|
-
.
|
|
2330
|
+
.animate__fadeOutRight {
|
|
2227
2331
|
-webkit-animation-name: fadeOutRight;
|
|
2228
2332
|
animation-name: fadeOutRight;
|
|
2229
2333
|
}
|
|
@@ -2249,7 +2353,7 @@
|
|
|
2249
2353
|
transform: translate3d(2000px, 0, 0);
|
|
2250
2354
|
}
|
|
2251
2355
|
}
|
|
2252
|
-
.
|
|
2356
|
+
.animate__fadeOutRightBig {
|
|
2253
2357
|
-webkit-animation-name: fadeOutRightBig;
|
|
2254
2358
|
animation-name: fadeOutRightBig;
|
|
2255
2359
|
}
|
|
@@ -2275,7 +2379,7 @@
|
|
|
2275
2379
|
transform: translate3d(0, -100%, 0);
|
|
2276
2380
|
}
|
|
2277
2381
|
}
|
|
2278
|
-
.
|
|
2382
|
+
.animate__fadeOutUp {
|
|
2279
2383
|
-webkit-animation-name: fadeOutUp;
|
|
2280
2384
|
animation-name: fadeOutUp;
|
|
2281
2385
|
}
|
|
@@ -2301,7 +2405,7 @@
|
|
|
2301
2405
|
transform: translate3d(0, -2000px, 0);
|
|
2302
2406
|
}
|
|
2303
2407
|
}
|
|
2304
|
-
.
|
|
2408
|
+
.animate__fadeOutUpBig {
|
|
2305
2409
|
-webkit-animation-name: fadeOutUpBig;
|
|
2306
2410
|
animation-name: fadeOutUpBig;
|
|
2307
2411
|
}
|
|
@@ -2329,7 +2433,7 @@
|
|
|
2329
2433
|
transform: translate3d(-100%, -100%, 0);
|
|
2330
2434
|
}
|
|
2331
2435
|
}
|
|
2332
|
-
.
|
|
2436
|
+
.animate__fadeOutTopLeft {
|
|
2333
2437
|
-webkit-animation-name: fadeOutTopLeft;
|
|
2334
2438
|
animation-name: fadeOutTopLeft;
|
|
2335
2439
|
}
|
|
@@ -2357,7 +2461,7 @@
|
|
|
2357
2461
|
transform: translate3d(100%, -100%, 0);
|
|
2358
2462
|
}
|
|
2359
2463
|
}
|
|
2360
|
-
.
|
|
2464
|
+
.animate__fadeOutTopRight {
|
|
2361
2465
|
-webkit-animation-name: fadeOutTopRight;
|
|
2362
2466
|
animation-name: fadeOutTopRight;
|
|
2363
2467
|
}
|
|
@@ -2385,7 +2489,7 @@
|
|
|
2385
2489
|
transform: translate3d(100%, 100%, 0);
|
|
2386
2490
|
}
|
|
2387
2491
|
}
|
|
2388
|
-
.
|
|
2492
|
+
.animate__fadeOutBottomRight {
|
|
2389
2493
|
-webkit-animation-name: fadeOutBottomRight;
|
|
2390
2494
|
animation-name: fadeOutBottomRight;
|
|
2391
2495
|
}
|
|
@@ -2413,24 +2517,22 @@
|
|
|
2413
2517
|
transform: translate3d(-100%, 100%, 0);
|
|
2414
2518
|
}
|
|
2415
2519
|
}
|
|
2416
|
-
.
|
|
2520
|
+
.animate__fadeOutBottomLeft {
|
|
2417
2521
|
-webkit-animation-name: fadeOutBottomLeft;
|
|
2418
2522
|
animation-name: fadeOutBottomLeft;
|
|
2419
2523
|
}
|
|
2420
2524
|
/* Flippers */
|
|
2421
2525
|
@-webkit-keyframes flip {
|
|
2422
2526
|
from {
|
|
2423
|
-
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
|
|
2424
|
-
|
|
2425
|
-
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
|
|
2426
|
-
rotate3d(0, 1, 0, -360deg);
|
|
2527
|
+
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
|
|
2528
|
+
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
|
|
2427
2529
|
-webkit-animation-timing-function: ease-out;
|
|
2428
2530
|
animation-timing-function: ease-out;
|
|
2429
2531
|
}
|
|
2430
2532
|
|
|
2431
2533
|
40% {
|
|
2432
|
-
-webkit-transform: perspective(400px) scale3d(1, 1, 1)
|
|
2433
|
-
|
|
2534
|
+
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
|
|
2535
|
+
rotate3d(0, 1, 0, -190deg);
|
|
2434
2536
|
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
|
|
2435
2537
|
rotate3d(0, 1, 0, -190deg);
|
|
2436
2538
|
-webkit-animation-timing-function: ease-out;
|
|
@@ -2438,8 +2540,8 @@
|
|
|
2438
2540
|
}
|
|
2439
2541
|
|
|
2440
2542
|
50% {
|
|
2441
|
-
-webkit-transform: perspective(400px) scale3d(1, 1, 1)
|
|
2442
|
-
|
|
2543
|
+
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
|
|
2544
|
+
rotate3d(0, 1, 0, -170deg);
|
|
2443
2545
|
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
|
|
2444
2546
|
rotate3d(0, 1, 0, -170deg);
|
|
2445
2547
|
-webkit-animation-timing-function: ease-in;
|
|
@@ -2447,8 +2549,8 @@
|
|
|
2447
2549
|
}
|
|
2448
2550
|
|
|
2449
2551
|
80% {
|
|
2450
|
-
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
|
|
2451
|
-
|
|
2552
|
+
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
|
|
2553
|
+
rotate3d(0, 1, 0, 0deg);
|
|
2452
2554
|
transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
|
|
2453
2555
|
rotate3d(0, 1, 0, 0deg);
|
|
2454
2556
|
-webkit-animation-timing-function: ease-in;
|
|
@@ -2456,27 +2558,23 @@
|
|
|
2456
2558
|
}
|
|
2457
2559
|
|
|
2458
2560
|
to {
|
|
2459
|
-
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
|
|
2460
|
-
|
|
2461
|
-
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
|
|
2462
|
-
rotate3d(0, 1, 0, 0deg);
|
|
2561
|
+
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
|
|
2562
|
+
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
|
|
2463
2563
|
-webkit-animation-timing-function: ease-in;
|
|
2464
2564
|
animation-timing-function: ease-in;
|
|
2465
2565
|
}
|
|
2466
2566
|
}
|
|
2467
2567
|
@keyframes flip {
|
|
2468
2568
|
from {
|
|
2469
|
-
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
|
|
2470
|
-
|
|
2471
|
-
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
|
|
2472
|
-
rotate3d(0, 1, 0, -360deg);
|
|
2569
|
+
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
|
|
2570
|
+
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
|
|
2473
2571
|
-webkit-animation-timing-function: ease-out;
|
|
2474
2572
|
animation-timing-function: ease-out;
|
|
2475
2573
|
}
|
|
2476
2574
|
|
|
2477
2575
|
40% {
|
|
2478
|
-
-webkit-transform: perspective(400px) scale3d(1, 1, 1)
|
|
2479
|
-
|
|
2576
|
+
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
|
|
2577
|
+
rotate3d(0, 1, 0, -190deg);
|
|
2480
2578
|
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
|
|
2481
2579
|
rotate3d(0, 1, 0, -190deg);
|
|
2482
2580
|
-webkit-animation-timing-function: ease-out;
|
|
@@ -2484,8 +2582,8 @@
|
|
|
2484
2582
|
}
|
|
2485
2583
|
|
|
2486
2584
|
50% {
|
|
2487
|
-
-webkit-transform: perspective(400px) scale3d(1, 1, 1)
|
|
2488
|
-
|
|
2585
|
+
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
|
|
2586
|
+
rotate3d(0, 1, 0, -170deg);
|
|
2489
2587
|
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
|
|
2490
2588
|
rotate3d(0, 1, 0, -170deg);
|
|
2491
2589
|
-webkit-animation-timing-function: ease-in;
|
|
@@ -2493,8 +2591,8 @@
|
|
|
2493
2591
|
}
|
|
2494
2592
|
|
|
2495
2593
|
80% {
|
|
2496
|
-
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
|
|
2497
|
-
|
|
2594
|
+
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
|
|
2595
|
+
rotate3d(0, 1, 0, 0deg);
|
|
2498
2596
|
transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
|
|
2499
2597
|
rotate3d(0, 1, 0, 0deg);
|
|
2500
2598
|
-webkit-animation-timing-function: ease-in;
|
|
@@ -2502,15 +2600,13 @@
|
|
|
2502
2600
|
}
|
|
2503
2601
|
|
|
2504
2602
|
to {
|
|
2505
|
-
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
|
|
2506
|
-
|
|
2507
|
-
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
|
|
2508
|
-
rotate3d(0, 1, 0, 0deg);
|
|
2603
|
+
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
|
|
2604
|
+
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
|
|
2509
2605
|
-webkit-animation-timing-function: ease-in;
|
|
2510
2606
|
animation-timing-function: ease-in;
|
|
2511
2607
|
}
|
|
2512
2608
|
}
|
|
2513
|
-
.
|
|
2609
|
+
.animate__animated.animate__flip {
|
|
2514
2610
|
-webkit-backface-visibility: visible;
|
|
2515
2611
|
backface-visibility: visible;
|
|
2516
2612
|
-webkit-animation-name: flip;
|
|
@@ -2580,7 +2676,7 @@
|
|
|
2580
2676
|
transform: perspective(400px);
|
|
2581
2677
|
}
|
|
2582
2678
|
}
|
|
2583
|
-
.
|
|
2679
|
+
.animate__flipInX {
|
|
2584
2680
|
-webkit-backface-visibility: visible !important;
|
|
2585
2681
|
backface-visibility: visible !important;
|
|
2586
2682
|
-webkit-animation-name: flipInX;
|
|
@@ -2650,7 +2746,7 @@
|
|
|
2650
2746
|
transform: perspective(400px);
|
|
2651
2747
|
}
|
|
2652
2748
|
}
|
|
2653
|
-
.
|
|
2749
|
+
.animate__flipInY {
|
|
2654
2750
|
-webkit-backface-visibility: visible !important;
|
|
2655
2751
|
backface-visibility: visible !important;
|
|
2656
2752
|
-webkit-animation-name: flipInY;
|
|
@@ -2692,7 +2788,7 @@
|
|
|
2692
2788
|
opacity: 0;
|
|
2693
2789
|
}
|
|
2694
2790
|
}
|
|
2695
|
-
.
|
|
2791
|
+
.animate__flipOutX {
|
|
2696
2792
|
-webkit-animation-duration: calc(1s * 0.75);
|
|
2697
2793
|
animation-duration: calc(1s * 0.75);
|
|
2698
2794
|
-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
|
|
@@ -2738,7 +2834,7 @@
|
|
|
2738
2834
|
opacity: 0;
|
|
2739
2835
|
}
|
|
2740
2836
|
}
|
|
2741
|
-
.
|
|
2837
|
+
.animate__flipOutY {
|
|
2742
2838
|
-webkit-animation-duration: calc(1s * 0.75);
|
|
2743
2839
|
animation-duration: calc(1s * 0.75);
|
|
2744
2840
|
-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
|
|
@@ -2795,7 +2891,7 @@
|
|
|
2795
2891
|
transform: translate3d(0, 0, 0);
|
|
2796
2892
|
}
|
|
2797
2893
|
}
|
|
2798
|
-
.
|
|
2894
|
+
.animate__lightSpeedInRight {
|
|
2799
2895
|
-webkit-animation-name: lightSpeedInRight;
|
|
2800
2896
|
animation-name: lightSpeedInRight;
|
|
2801
2897
|
-webkit-animation-timing-function: ease-out;
|
|
@@ -2847,7 +2943,7 @@
|
|
|
2847
2943
|
transform: translate3d(0, 0, 0);
|
|
2848
2944
|
}
|
|
2849
2945
|
}
|
|
2850
|
-
.
|
|
2946
|
+
.animate__lightSpeedInLeft {
|
|
2851
2947
|
-webkit-animation-name: lightSpeedInLeft;
|
|
2852
2948
|
animation-name: lightSpeedInLeft;
|
|
2853
2949
|
-webkit-animation-timing-function: ease-out;
|
|
@@ -2875,7 +2971,7 @@
|
|
|
2875
2971
|
opacity: 0;
|
|
2876
2972
|
}
|
|
2877
2973
|
}
|
|
2878
|
-
.
|
|
2974
|
+
.animate__lightSpeedOutRight {
|
|
2879
2975
|
-webkit-animation-name: lightSpeedOutRight;
|
|
2880
2976
|
animation-name: lightSpeedOutRight;
|
|
2881
2977
|
-webkit-animation-timing-function: ease-in;
|
|
@@ -2903,7 +2999,7 @@
|
|
|
2903
2999
|
opacity: 0;
|
|
2904
3000
|
}
|
|
2905
3001
|
}
|
|
2906
|
-
.
|
|
3002
|
+
.animate__lightSpeedOutLeft {
|
|
2907
3003
|
-webkit-animation-name: lightSpeedOutLeft;
|
|
2908
3004
|
animation-name: lightSpeedOutLeft;
|
|
2909
3005
|
-webkit-animation-timing-function: ease-in;
|
|
@@ -2936,7 +3032,7 @@
|
|
|
2936
3032
|
opacity: 1;
|
|
2937
3033
|
}
|
|
2938
3034
|
}
|
|
2939
|
-
.
|
|
3035
|
+
.animate__rotateIn {
|
|
2940
3036
|
-webkit-animation-name: rotateIn;
|
|
2941
3037
|
animation-name: rotateIn;
|
|
2942
3038
|
-webkit-transform-origin: center;
|
|
@@ -2968,7 +3064,7 @@
|
|
|
2968
3064
|
opacity: 1;
|
|
2969
3065
|
}
|
|
2970
3066
|
}
|
|
2971
|
-
.
|
|
3067
|
+
.animate__rotateInDownLeft {
|
|
2972
3068
|
-webkit-animation-name: rotateInDownLeft;
|
|
2973
3069
|
animation-name: rotateInDownLeft;
|
|
2974
3070
|
-webkit-transform-origin: left bottom;
|
|
@@ -3000,7 +3096,7 @@
|
|
|
3000
3096
|
opacity: 1;
|
|
3001
3097
|
}
|
|
3002
3098
|
}
|
|
3003
|
-
.
|
|
3099
|
+
.animate__rotateInDownRight {
|
|
3004
3100
|
-webkit-animation-name: rotateInDownRight;
|
|
3005
3101
|
animation-name: rotateInDownRight;
|
|
3006
3102
|
-webkit-transform-origin: right bottom;
|
|
@@ -3032,7 +3128,7 @@
|
|
|
3032
3128
|
opacity: 1;
|
|
3033
3129
|
}
|
|
3034
3130
|
}
|
|
3035
|
-
.
|
|
3131
|
+
.animate__rotateInUpLeft {
|
|
3036
3132
|
-webkit-animation-name: rotateInUpLeft;
|
|
3037
3133
|
animation-name: rotateInUpLeft;
|
|
3038
3134
|
-webkit-transform-origin: left bottom;
|
|
@@ -3064,7 +3160,7 @@
|
|
|
3064
3160
|
opacity: 1;
|
|
3065
3161
|
}
|
|
3066
3162
|
}
|
|
3067
|
-
.
|
|
3163
|
+
.animate__rotateInUpRight {
|
|
3068
3164
|
-webkit-animation-name: rotateInUpRight;
|
|
3069
3165
|
animation-name: rotateInUpRight;
|
|
3070
3166
|
-webkit-transform-origin: right bottom;
|
|
@@ -3093,7 +3189,7 @@
|
|
|
3093
3189
|
opacity: 0;
|
|
3094
3190
|
}
|
|
3095
3191
|
}
|
|
3096
|
-
.
|
|
3192
|
+
.animate__rotateOut {
|
|
3097
3193
|
-webkit-animation-name: rotateOut;
|
|
3098
3194
|
animation-name: rotateOut;
|
|
3099
3195
|
-webkit-transform-origin: center;
|
|
@@ -3121,7 +3217,7 @@
|
|
|
3121
3217
|
opacity: 0;
|
|
3122
3218
|
}
|
|
3123
3219
|
}
|
|
3124
|
-
.
|
|
3220
|
+
.animate__rotateOutDownLeft {
|
|
3125
3221
|
-webkit-animation-name: rotateOutDownLeft;
|
|
3126
3222
|
animation-name: rotateOutDownLeft;
|
|
3127
3223
|
-webkit-transform-origin: left bottom;
|
|
@@ -3149,7 +3245,7 @@
|
|
|
3149
3245
|
opacity: 0;
|
|
3150
3246
|
}
|
|
3151
3247
|
}
|
|
3152
|
-
.
|
|
3248
|
+
.animate__rotateOutDownRight {
|
|
3153
3249
|
-webkit-animation-name: rotateOutDownRight;
|
|
3154
3250
|
animation-name: rotateOutDownRight;
|
|
3155
3251
|
-webkit-transform-origin: right bottom;
|
|
@@ -3177,7 +3273,7 @@
|
|
|
3177
3273
|
opacity: 0;
|
|
3178
3274
|
}
|
|
3179
3275
|
}
|
|
3180
|
-
.
|
|
3276
|
+
.animate__rotateOutUpLeft {
|
|
3181
3277
|
-webkit-animation-name: rotateOutUpLeft;
|
|
3182
3278
|
animation-name: rotateOutUpLeft;
|
|
3183
3279
|
-webkit-transform-origin: left bottom;
|
|
@@ -3205,7 +3301,7 @@
|
|
|
3205
3301
|
opacity: 0;
|
|
3206
3302
|
}
|
|
3207
3303
|
}
|
|
3208
|
-
.
|
|
3304
|
+
.animate__rotateOutUpRight {
|
|
3209
3305
|
-webkit-animation-name: rotateOutUpRight;
|
|
3210
3306
|
animation-name: rotateOutUpRight;
|
|
3211
3307
|
-webkit-transform-origin: right bottom;
|
|
@@ -3270,7 +3366,7 @@
|
|
|
3270
3366
|
opacity: 0;
|
|
3271
3367
|
}
|
|
3272
3368
|
}
|
|
3273
|
-
.
|
|
3369
|
+
.animate__hinge {
|
|
3274
3370
|
-webkit-animation-duration: calc(1s * 2);
|
|
3275
3371
|
animation-duration: calc(1s * 2);
|
|
3276
3372
|
-webkit-animation-duration: calc(var(--animate-duration) * 2);
|
|
@@ -3330,7 +3426,7 @@
|
|
|
3330
3426
|
transform: scale(1);
|
|
3331
3427
|
}
|
|
3332
3428
|
}
|
|
3333
|
-
.
|
|
3429
|
+
.animate__jackInTheBox {
|
|
3334
3430
|
-webkit-animation-name: jackInTheBox;
|
|
3335
3431
|
animation-name: jackInTheBox;
|
|
3336
3432
|
}
|
|
@@ -3361,7 +3457,7 @@
|
|
|
3361
3457
|
transform: translate3d(0, 0, 0);
|
|
3362
3458
|
}
|
|
3363
3459
|
}
|
|
3364
|
-
.
|
|
3460
|
+
.animate__rollIn {
|
|
3365
3461
|
-webkit-animation-name: rollIn;
|
|
3366
3462
|
animation-name: rollIn;
|
|
3367
3463
|
}
|
|
@@ -3388,7 +3484,7 @@
|
|
|
3388
3484
|
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
|
|
3389
3485
|
}
|
|
3390
3486
|
}
|
|
3391
|
-
.
|
|
3487
|
+
.animate__rollOut {
|
|
3392
3488
|
-webkit-animation-name: rollOut;
|
|
3393
3489
|
animation-name: rollOut;
|
|
3394
3490
|
}
|
|
@@ -3415,7 +3511,7 @@
|
|
|
3415
3511
|
opacity: 1;
|
|
3416
3512
|
}
|
|
3417
3513
|
}
|
|
3418
|
-
.
|
|
3514
|
+
.animate__zoomIn {
|
|
3419
3515
|
-webkit-animation-name: zoomIn;
|
|
3420
3516
|
animation-name: zoomIn;
|
|
3421
3517
|
}
|
|
@@ -3453,7 +3549,7 @@
|
|
|
3453
3549
|
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
3454
3550
|
}
|
|
3455
3551
|
}
|
|
3456
|
-
.
|
|
3552
|
+
.animate__zoomInDown {
|
|
3457
3553
|
-webkit-animation-name: zoomInDown;
|
|
3458
3554
|
animation-name: zoomInDown;
|
|
3459
3555
|
}
|
|
@@ -3491,7 +3587,7 @@
|
|
|
3491
3587
|
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
3492
3588
|
}
|
|
3493
3589
|
}
|
|
3494
|
-
.
|
|
3590
|
+
.animate__zoomInLeft {
|
|
3495
3591
|
-webkit-animation-name: zoomInLeft;
|
|
3496
3592
|
animation-name: zoomInLeft;
|
|
3497
3593
|
}
|
|
@@ -3529,7 +3625,7 @@
|
|
|
3529
3625
|
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
3530
3626
|
}
|
|
3531
3627
|
}
|
|
3532
|
-
.
|
|
3628
|
+
.animate__zoomInRight {
|
|
3533
3629
|
-webkit-animation-name: zoomInRight;
|
|
3534
3630
|
animation-name: zoomInRight;
|
|
3535
3631
|
}
|
|
@@ -3567,7 +3663,7 @@
|
|
|
3567
3663
|
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
3568
3664
|
}
|
|
3569
3665
|
}
|
|
3570
|
-
.
|
|
3666
|
+
.animate__zoomInUp {
|
|
3571
3667
|
-webkit-animation-name: zoomInUp;
|
|
3572
3668
|
animation-name: zoomInUp;
|
|
3573
3669
|
}
|
|
@@ -3602,7 +3698,7 @@
|
|
|
3602
3698
|
opacity: 0;
|
|
3603
3699
|
}
|
|
3604
3700
|
}
|
|
3605
|
-
.
|
|
3701
|
+
.animate__zoomOut {
|
|
3606
3702
|
-webkit-animation-name: zoomOut;
|
|
3607
3703
|
animation-name: zoomOut;
|
|
3608
3704
|
}
|
|
@@ -3640,7 +3736,7 @@
|
|
|
3640
3736
|
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
3641
3737
|
}
|
|
3642
3738
|
}
|
|
3643
|
-
.
|
|
3739
|
+
.animate__zoomOutDown {
|
|
3644
3740
|
-webkit-animation-name: zoomOutDown;
|
|
3645
3741
|
animation-name: zoomOutDown;
|
|
3646
3742
|
-webkit-transform-origin: center bottom;
|
|
@@ -3672,7 +3768,7 @@
|
|
|
3672
3768
|
transform: scale(0.1) translate3d(-2000px, 0, 0);
|
|
3673
3769
|
}
|
|
3674
3770
|
}
|
|
3675
|
-
.
|
|
3771
|
+
.animate__zoomOutLeft {
|
|
3676
3772
|
-webkit-animation-name: zoomOutLeft;
|
|
3677
3773
|
animation-name: zoomOutLeft;
|
|
3678
3774
|
-webkit-transform-origin: left center;
|
|
@@ -3704,7 +3800,7 @@
|
|
|
3704
3800
|
transform: scale(0.1) translate3d(2000px, 0, 0);
|
|
3705
3801
|
}
|
|
3706
3802
|
}
|
|
3707
|
-
.
|
|
3803
|
+
.animate__zoomOutRight {
|
|
3708
3804
|
-webkit-animation-name: zoomOutRight;
|
|
3709
3805
|
animation-name: zoomOutRight;
|
|
3710
3806
|
-webkit-transform-origin: right center;
|
|
@@ -3744,7 +3840,7 @@
|
|
|
3744
3840
|
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
3745
3841
|
}
|
|
3746
3842
|
}
|
|
3747
|
-
.
|
|
3843
|
+
.animate__zoomOutUp {
|
|
3748
3844
|
-webkit-animation-name: zoomOutUp;
|
|
3749
3845
|
animation-name: zoomOutUp;
|
|
3750
3846
|
-webkit-transform-origin: center bottom;
|
|
@@ -3775,7 +3871,7 @@
|
|
|
3775
3871
|
transform: translate3d(0, 0, 0);
|
|
3776
3872
|
}
|
|
3777
3873
|
}
|
|
3778
|
-
.
|
|
3874
|
+
.animate__slideInDown {
|
|
3779
3875
|
-webkit-animation-name: slideInDown;
|
|
3780
3876
|
animation-name: slideInDown;
|
|
3781
3877
|
}
|
|
@@ -3803,7 +3899,7 @@
|
|
|
3803
3899
|
transform: translate3d(0, 0, 0);
|
|
3804
3900
|
}
|
|
3805
3901
|
}
|
|
3806
|
-
.
|
|
3902
|
+
.animate__slideInLeft {
|
|
3807
3903
|
-webkit-animation-name: slideInLeft;
|
|
3808
3904
|
animation-name: slideInLeft;
|
|
3809
3905
|
}
|
|
@@ -3831,7 +3927,7 @@
|
|
|
3831
3927
|
transform: translate3d(0, 0, 0);
|
|
3832
3928
|
}
|
|
3833
3929
|
}
|
|
3834
|
-
.
|
|
3930
|
+
.animate__slideInRight {
|
|
3835
3931
|
-webkit-animation-name: slideInRight;
|
|
3836
3932
|
animation-name: slideInRight;
|
|
3837
3933
|
}
|
|
@@ -3859,7 +3955,7 @@
|
|
|
3859
3955
|
transform: translate3d(0, 0, 0);
|
|
3860
3956
|
}
|
|
3861
3957
|
}
|
|
3862
|
-
.
|
|
3958
|
+
.animate__slideInUp {
|
|
3863
3959
|
-webkit-animation-name: slideInUp;
|
|
3864
3960
|
animation-name: slideInUp;
|
|
3865
3961
|
}
|
|
@@ -3888,7 +3984,7 @@
|
|
|
3888
3984
|
transform: translate3d(0, 100%, 0);
|
|
3889
3985
|
}
|
|
3890
3986
|
}
|
|
3891
|
-
.
|
|
3987
|
+
.animate__slideOutDown {
|
|
3892
3988
|
-webkit-animation-name: slideOutDown;
|
|
3893
3989
|
animation-name: slideOutDown;
|
|
3894
3990
|
}
|
|
@@ -3916,7 +4012,7 @@
|
|
|
3916
4012
|
transform: translate3d(-100%, 0, 0);
|
|
3917
4013
|
}
|
|
3918
4014
|
}
|
|
3919
|
-
.
|
|
4015
|
+
.animate__slideOutLeft {
|
|
3920
4016
|
-webkit-animation-name: slideOutLeft;
|
|
3921
4017
|
animation-name: slideOutLeft;
|
|
3922
4018
|
}
|
|
@@ -3944,7 +4040,7 @@
|
|
|
3944
4040
|
transform: translate3d(100%, 0, 0);
|
|
3945
4041
|
}
|
|
3946
4042
|
}
|
|
3947
|
-
.
|
|
4043
|
+
.animate__slideOutRight {
|
|
3948
4044
|
-webkit-animation-name: slideOutRight;
|
|
3949
4045
|
animation-name: slideOutRight;
|
|
3950
4046
|
}
|
|
@@ -3972,167 +4068,7 @@
|
|
|
3972
4068
|
transform: translate3d(0, -100%, 0);
|
|
3973
4069
|
}
|
|
3974
4070
|
}
|
|
3975
|
-
.
|
|
4071
|
+
.animate__slideOutUp {
|
|
3976
4072
|
-webkit-animation-name: slideOutUp;
|
|
3977
4073
|
animation-name: slideOutUp;
|
|
3978
4074
|
}
|
|
3979
|
-
|
|
3980
|
-
/****************************************** CUSTOM ******************************************/
|
|
3981
|
-
|
|
3982
|
-
@keyframes shake {
|
|
3983
|
-
2% {
|
|
3984
|
-
transform: translate(0.5px, 2.5px) rotate(1.5deg);
|
|
3985
|
-
}
|
|
3986
|
-
4% {
|
|
3987
|
-
transform: translate(0.5px, -1.5px) rotate(0.5deg);
|
|
3988
|
-
}
|
|
3989
|
-
6% {
|
|
3990
|
-
transform: translate(-0.5px, -1.5px) rotate(-0.5deg);
|
|
3991
|
-
}
|
|
3992
|
-
8% {
|
|
3993
|
-
transform: translate(2.5px, -0.5px) rotate(0.5deg);
|
|
3994
|
-
}
|
|
3995
|
-
10% {
|
|
3996
|
-
transform: translate(2.5px, 1.5px) rotate(0.5deg);
|
|
3997
|
-
}
|
|
3998
|
-
12% {
|
|
3999
|
-
transform: translate(2.5px, -0.5px) rotate(0.5deg);
|
|
4000
|
-
}
|
|
4001
|
-
14% {
|
|
4002
|
-
transform: translate(-1.5px, -1.5px) rotate(-0.5deg);
|
|
4003
|
-
}
|
|
4004
|
-
16% {
|
|
4005
|
-
transform: translate(-0.5px, 0.5px) rotate(0.5deg);
|
|
4006
|
-
}
|
|
4007
|
-
18% {
|
|
4008
|
-
transform: translate(-0.5px, 2.5px) rotate(1.5deg);
|
|
4009
|
-
}
|
|
4010
|
-
20% {
|
|
4011
|
-
transform: translate(2.5px, -1.5px) rotate(1.5deg);
|
|
4012
|
-
}
|
|
4013
|
-
22% {
|
|
4014
|
-
transform: translate(2.5px, -1.5px) rotate(0.5deg);
|
|
4015
|
-
}
|
|
4016
|
-
24% {
|
|
4017
|
-
transform: translate(0.5px, -1.5px) rotate(-0.5deg);
|
|
4018
|
-
}
|
|
4019
|
-
26% {
|
|
4020
|
-
transform: translate(-1.5px, 1.5px) rotate(0.5deg);
|
|
4021
|
-
}
|
|
4022
|
-
28% {
|
|
4023
|
-
transform: translate(-1.5px, -0.5px) rotate(1.5deg);
|
|
4024
|
-
}
|
|
4025
|
-
30% {
|
|
4026
|
-
transform: translate(-0.5px, -0.5px) rotate(1.5deg);
|
|
4027
|
-
}
|
|
4028
|
-
32% {
|
|
4029
|
-
transform: translate(-0.5px, -0.5px) rotate(-0.5deg);
|
|
4030
|
-
}
|
|
4031
|
-
34% {
|
|
4032
|
-
transform: translate(0.5px, -0.5px) rotate(0.5deg);
|
|
4033
|
-
}
|
|
4034
|
-
36% {
|
|
4035
|
-
transform: translate(-1.5px, 1.5px) rotate(1.5deg);
|
|
4036
|
-
}
|
|
4037
|
-
38% {
|
|
4038
|
-
transform: translate(2.5px, 1.5px) rotate(1.5deg);
|
|
4039
|
-
}
|
|
4040
|
-
40% {
|
|
4041
|
-
transform: translate(1.5px, -1.5px) rotate(0.5deg);
|
|
4042
|
-
}
|
|
4043
|
-
42% {
|
|
4044
|
-
transform: translate(1.5px, -1.5px) rotate(1.5deg);
|
|
4045
|
-
}
|
|
4046
|
-
44% {
|
|
4047
|
-
transform: translate(1.5px, 2.5px) rotate(1.5deg);
|
|
4048
|
-
}
|
|
4049
|
-
46% {
|
|
4050
|
-
transform: translate(1.5px, -1.5px) rotate(0.5deg);
|
|
4051
|
-
}
|
|
4052
|
-
48% {
|
|
4053
|
-
transform: translate(-0.5px, -1.5px) rotate(0.5deg);
|
|
4054
|
-
}
|
|
4055
|
-
50% {
|
|
4056
|
-
transform: translate(-1.5px, -1.5px) rotate(1.5deg);
|
|
4057
|
-
}
|
|
4058
|
-
52% {
|
|
4059
|
-
transform: translate(1.5px, -0.5px) rotate(1.5deg);
|
|
4060
|
-
}
|
|
4061
|
-
54% {
|
|
4062
|
-
transform: translate(-0.5px, -0.5px) rotate(0.5deg);
|
|
4063
|
-
}
|
|
4064
|
-
56% {
|
|
4065
|
-
transform: translate(2.5px, 0.5px) rotate(0.5deg);
|
|
4066
|
-
}
|
|
4067
|
-
58% {
|
|
4068
|
-
transform: translate(-0.5px, 0.5px) rotate(1.5deg);
|
|
4069
|
-
}
|
|
4070
|
-
60% {
|
|
4071
|
-
transform: translate(0.5px, 1.5px) rotate(-0.5deg);
|
|
4072
|
-
}
|
|
4073
|
-
62% {
|
|
4074
|
-
transform: translate(-0.5px, -1.5px) rotate(0.5deg);
|
|
4075
|
-
}
|
|
4076
|
-
64% {
|
|
4077
|
-
transform: translate(-0.5px, -1.5px) rotate(0.5deg);
|
|
4078
|
-
}
|
|
4079
|
-
66% {
|
|
4080
|
-
transform: translate(1.5px, -1.5px) rotate(-0.5deg);
|
|
4081
|
-
}
|
|
4082
|
-
68% {
|
|
4083
|
-
transform: translate(0.5px, 1.5px) rotate(-0.5deg);
|
|
4084
|
-
}
|
|
4085
|
-
70% {
|
|
4086
|
-
transform: translate(0.5px, 2.5px) rotate(-0.5deg);
|
|
4087
|
-
}
|
|
4088
|
-
72% {
|
|
4089
|
-
transform: translate(2.5px, -1.5px) rotate(1.5deg);
|
|
4090
|
-
}
|
|
4091
|
-
74% {
|
|
4092
|
-
transform: translate(-1.5px, -0.5px) rotate(0.5deg);
|
|
4093
|
-
}
|
|
4094
|
-
76% {
|
|
4095
|
-
transform: translate(-1.5px, -1.5px) rotate(1.5deg);
|
|
4096
|
-
}
|
|
4097
|
-
78% {
|
|
4098
|
-
transform: translate(0.5px, 0.5px) rotate(1.5deg);
|
|
4099
|
-
}
|
|
4100
|
-
80% {
|
|
4101
|
-
transform: translate(0.5px, -0.5px) rotate(1.5deg);
|
|
4102
|
-
}
|
|
4103
|
-
82% {
|
|
4104
|
-
transform: translate(-0.5px, -1.5px) rotate(1.5deg);
|
|
4105
|
-
}
|
|
4106
|
-
84% {
|
|
4107
|
-
transform: translate(2.5px, -0.5px) rotate(1.5deg);
|
|
4108
|
-
}
|
|
4109
|
-
86% {
|
|
4110
|
-
transform: translate(0.5px, 0.5px) rotate(-0.5deg);
|
|
4111
|
-
}
|
|
4112
|
-
88% {
|
|
4113
|
-
transform: translate(1.5px, 2.5px) rotate(-0.5deg);
|
|
4114
|
-
}
|
|
4115
|
-
90% {
|
|
4116
|
-
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
|
|
4117
|
-
}
|
|
4118
|
-
92% {
|
|
4119
|
-
transform: translate(-0.5px, -1.5px) rotate(-0.5deg);
|
|
4120
|
-
}
|
|
4121
|
-
94% {
|
|
4122
|
-
transform: translate(1.5px, -0.5px) rotate(0.5deg);
|
|
4123
|
-
}
|
|
4124
|
-
96% {
|
|
4125
|
-
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
|
|
4126
|
-
}
|
|
4127
|
-
98% {
|
|
4128
|
-
transform: translate(2.5px, 2.5px) rotate(0.5deg);
|
|
4129
|
-
}
|
|
4130
|
-
0%,
|
|
4131
|
-
100% {
|
|
4132
|
-
transform: translate(0, 0) rotate(0);
|
|
4133
|
-
}
|
|
4134
|
-
}
|
|
4135
|
-
.shake {
|
|
4136
|
-
-webkit-animation-name: shake;
|
|
4137
|
-
animation-name: shake;
|
|
4138
|
-
}
|