@mdsfe/mds-ui 0.2.0

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.
Files changed (153) hide show
  1. package/CHANGELOG.md +778 -0
  2. package/LICENSE +21 -0
  3. package/README.md +106 -0
  4. package/dist/_locale/index.js +18 -0
  5. package/dist/_locale/zh-CN.js +123 -0
  6. package/dist/_mixin/emitter.js +35 -0
  7. package/dist/_mixin/focus.js +13 -0
  8. package/dist/_mixin/locale.js +17 -0
  9. package/dist/_mixin/popper.js +192 -0
  10. package/dist/_mixin/tooltip.js +218 -0
  11. package/dist/_util/__test__/switchcase.test.js +43 -0
  12. package/dist/_util/autoprefixer.js +249 -0
  13. package/dist/_util/clickoutside.js +79 -0
  14. package/dist/_util/date.js +368 -0
  15. package/dist/_util/dateUtil.js +311 -0
  16. package/dist/_util/dom.js +240 -0
  17. package/dist/_util/getRequestAnimationFrame.js +50 -0
  18. package/dist/_util/getScroll.js +21 -0
  19. package/dist/_util/loaders/loaders.css.js +52 -0
  20. package/dist/_util/loaders/loading.js +53 -0
  21. package/dist/_util/merge.js +18 -0
  22. package/dist/_util/popper.js +1261 -0
  23. package/dist/_util/popup/index.js +232 -0
  24. package/dist/_util/popup/popup-manager.js +205 -0
  25. package/dist/_util/proptype.js +12 -0
  26. package/dist/_util/repeatClick.js +30 -0
  27. package/dist/_util/resize.js +61 -0
  28. package/dist/_util/resizeEvent.js +59 -0
  29. package/dist/_util/scrollIntoView.js +38 -0
  30. package/dist/_util/scrollbar-width.js +37 -0
  31. package/dist/_util/soda.js +54 -0
  32. package/dist/_util/switchcase.js +22 -0
  33. package/dist/_util/throttleByAnimationFrame.js +70 -0
  34. package/dist/_util/tree/node.js +412 -0
  35. package/dist/_util/tree/tree.js +410 -0
  36. package/dist/_util/util.js +166 -0
  37. package/dist/_util/vue-popper.js +213 -0
  38. package/dist/affix.js +509 -0
  39. package/dist/anchor.js +522 -0
  40. package/dist/avatar.js +437 -0
  41. package/dist/backtop.js +469 -0
  42. package/dist/badge.js +439 -0
  43. package/dist/bordershadow.js +310 -0
  44. package/dist/breadcrumb.js +434 -0
  45. package/dist/button.js +579 -0
  46. package/dist/card.js +514 -0
  47. package/dist/carousel.js +1326 -0
  48. package/dist/cascaderpanel.js +2320 -0
  49. package/dist/checkbox.js +681 -0
  50. package/dist/col.js +546 -0
  51. package/dist/collapse.js +671 -0
  52. package/dist/color.js +306 -0
  53. package/dist/datepicker.js +8089 -0
  54. package/dist/divider.js +346 -0
  55. package/dist/drawer.js +652 -0
  56. package/dist/dropdown.js +687 -0
  57. package/dist/empty.js +416 -0
  58. package/dist/font.js +306 -0
  59. package/dist/form.js +878 -0
  60. package/dist/icon.js +401 -0
  61. package/dist/index.js +1 -0
  62. package/dist/input.js +1251 -0
  63. package/dist/inputnumber.js +689 -0
  64. package/dist/layout.js +786 -0
  65. package/dist/list.js +789 -0
  66. package/dist/loading.js +430 -0
  67. package/dist/mds-ui.min.css +7 -0
  68. package/dist/mds-ui.min.js +64911 -0
  69. package/dist/menu.js +1131 -0
  70. package/dist/message.js +1016 -0
  71. package/dist/modal.js +895 -0
  72. package/dist/notification.js +818 -0
  73. package/dist/pagination.js +1213 -0
  74. package/dist/popconfirm.js +336 -0
  75. package/dist/popover.js +206 -0
  76. package/dist/progress.js +1023 -0
  77. package/dist/radio.js +760 -0
  78. package/dist/rate.js +765 -0
  79. package/dist/row.js +546 -0
  80. package/dist/select.js +4950 -0
  81. package/dist/slider.js +1411 -0
  82. package/dist/slottable.js +1414 -0
  83. package/dist/steps.js +546 -0
  84. package/dist/style/affix.css +5524 -0
  85. package/dist/style/anchor.css +5572 -0
  86. package/dist/style/avatar.css +5587 -0
  87. package/dist/style/backtop.css +34 -0
  88. package/dist/style/badge.css +5655 -0
  89. package/dist/style/bordershadow.css +5601 -0
  90. package/dist/style/breadcrumb.css +5551 -0
  91. package/dist/style/button.css +7679 -0
  92. package/dist/style/card.css +5670 -0
  93. package/dist/style/carousel.css +5731 -0
  94. package/dist/style/cascaderpanel.css +125 -0
  95. package/dist/style/checkbox.css +5700 -0
  96. package/dist/style/col.css +8121 -0
  97. package/dist/style/collapse.css +5593 -0
  98. package/dist/style/color.css +6136 -0
  99. package/dist/style/datepicker.css +5977 -0
  100. package/dist/style/divider.css +5558 -0
  101. package/dist/style/drawer.css +7979 -0
  102. package/dist/style/dropdown.css +7950 -0
  103. package/dist/style/empty.css +5563 -0
  104. package/dist/style/font.css +5559 -0
  105. package/dist/style/form.css +5662 -0
  106. package/dist/style/icon.css +5538 -0
  107. package/dist/style/input.css +6256 -0
  108. package/dist/style/inputnumber.css +5828 -0
  109. package/dist/style/layout.css +5572 -0
  110. package/dist/style/list.css +5655 -0
  111. package/dist/style/loading.css +5540 -0
  112. package/dist/style/menu.css +6183 -0
  113. package/dist/style/message.css +194 -0
  114. package/dist/style/modal.css +5637 -0
  115. package/dist/style/notification.css +5706 -0
  116. package/dist/style/pagination.css +6683 -0
  117. package/dist/style/popconfirm.css +7951 -0
  118. package/dist/style/popover.css +5727 -0
  119. package/dist/style/progress.css +5714 -0
  120. package/dist/style/radio.css +5769 -0
  121. package/dist/style/rate.css +5616 -0
  122. package/dist/style/row.css +8121 -0
  123. package/dist/style/select.css +5729 -0
  124. package/dist/style/slider.css +5594 -0
  125. package/dist/style/slottable.css +5831 -0
  126. package/dist/style/steps.css +6100 -0
  127. package/dist/style/switch.css +5624 -0
  128. package/dist/style/table.css +8392 -0
  129. package/dist/style/tabs.css +6047 -0
  130. package/dist/style/tag.css +5935 -0
  131. package/dist/style/text.css +5636 -0
  132. package/dist/style/timeline.css +5602 -0
  133. package/dist/style/timepicker.css +5904 -0
  134. package/dist/style/tooltip.css +5686 -0
  135. package/dist/style/transfer.css +101 -0
  136. package/dist/style/transition.css +1417 -0
  137. package/dist/style/tree.css +5598 -0
  138. package/dist/style/typography.css +5640 -0
  139. package/dist/style/upload.css +5834 -0
  140. package/dist/switch.js +448 -0
  141. package/dist/table.js +3809 -0
  142. package/dist/tabs.js +1273 -0
  143. package/dist/tag.js +478 -0
  144. package/dist/text.js +1100 -0
  145. package/dist/timeline.js +495 -0
  146. package/dist/timepicker.js +1567 -0
  147. package/dist/tooltip.js +179 -0
  148. package/dist/transfer.js +981 -0
  149. package/dist/transition.js +246 -0
  150. package/dist/tree.js +1866 -0
  151. package/dist/typography.js +469 -0
  152. package/dist/upload.js +1990 -0
  153. package/package.json +144 -0
@@ -0,0 +1,1417 @@
1
+ /*!
2
+ * Animate.less v2.0 (https://github.com/codeworksdev/animate.less)
3
+ * Copyright (c) 2014-2018 CODEWORKS <support@codeworksnyc.com>
4
+ * Licensed under the MIT license
5
+ */
6
+ /*
7
+ [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
8
+ [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
9
+ [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
10
+ */
11
+ /*
12
+ [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
13
+ [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
14
+ [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
15
+ */
16
+ .animated {
17
+ animation-fill-mode: both;
18
+ animation-duration: 1s;
19
+ animation-delay: 0s;
20
+ animation-iteration-count: 1;
21
+ }
22
+ .animated.infinite {
23
+ animation-iteration-count: infinite;
24
+ }
25
+ .animated.bounce {
26
+ animation-name: bounce;
27
+ transform-origin: center bottom;
28
+ }
29
+ .animated.bounceIn {
30
+ animation-name: bounceIn;
31
+ animation-duration: 0.75s;
32
+ }
33
+ .animated.bounceInDown {
34
+ animation-name: bounceInDown;
35
+ }
36
+ .animated.bounceInLeft {
37
+ animation-name: bounceInLeft;
38
+ }
39
+ .animated.bounceInRight {
40
+ animation-name: bounceInRight;
41
+ }
42
+ .animated.bounceInUp {
43
+ animation-name: bounceInUp;
44
+ }
45
+ .animated.bounceOut {
46
+ animation-name: bounceOut;
47
+ animation-duration: 0.75s;
48
+ }
49
+ .animated.bounceOutDown {
50
+ animation-name: bounceOutDown;
51
+ }
52
+ .animated.bounceOutLeft {
53
+ animation-name: bounceOutLeft;
54
+ }
55
+ .animated.bounceOutRight {
56
+ animation-name: bounceOutRight;
57
+ }
58
+ .animated.bounceOutUp {
59
+ animation-name: bounceOutUp;
60
+ }
61
+ .animated.fadeIn {
62
+ animation-name: fadeIn;
63
+ }
64
+ .animated.fadeInDown {
65
+ animation-name: fadeInDown;
66
+ }
67
+ .animated.fadeInDownBig {
68
+ animation-name: fadeInDownBig;
69
+ }
70
+ .animated.fadeInLeft {
71
+ animation-name: fadeInLeft;
72
+ }
73
+ .animated.fadeInLeftBig {
74
+ animation-name: fadeInLeftBig;
75
+ }
76
+ .animated.fadeInRight {
77
+ animation-name: fadeInRight;
78
+ }
79
+ .animated.fadeInRightBig {
80
+ animation-name: fadeInRightBig;
81
+ }
82
+ .animated.fadeInUp {
83
+ animation-name: fadeInUp;
84
+ }
85
+ .animated.fadeInUpBig {
86
+ animation-name: fadeInUpBig;
87
+ }
88
+ .animated.fadeOut {
89
+ animation-name: fadeOut;
90
+ }
91
+ .animated.fadeOutDown {
92
+ animation-name: fadeOutDown;
93
+ }
94
+ .animated.fadeOutDownBig {
95
+ animation-name: fadeOutDownBig;
96
+ }
97
+ .animated.fadeOutLeft {
98
+ animation-name: fadeOutLeft;
99
+ }
100
+ .animated.fadeOutLeftBig {
101
+ animation-name: fadeOutLeftBig;
102
+ }
103
+ .animated.fadeOutRight {
104
+ animation-name: fadeOutRight;
105
+ }
106
+ .animated.fadeOutRightBig {
107
+ animation-name: fadeOutRightBig;
108
+ }
109
+ .animated.fadeOutUp {
110
+ animation-name: fadeOutUp;
111
+ }
112
+ .animated.fadeOutUpBig {
113
+ animation-name: fadeOutUpBig;
114
+ }
115
+ .animated.flash {
116
+ animation-name: flash;
117
+ }
118
+ .animated.flashmin {
119
+ animation-name: flashmin;
120
+ }
121
+ .animated.flip {
122
+ animation-name: flip;
123
+ backface-visibility: visible;
124
+ }
125
+ .animated.flipInX {
126
+ animation-name: flipInX;
127
+ backface-visibility: visible;
128
+ }
129
+ .animated.flipInY {
130
+ animation-name: flipInY;
131
+ backface-visibility: visible;
132
+ }
133
+ .animated.flipOutX {
134
+ animation-name: flipOutX;
135
+ backface-visibility: visible;
136
+ animation-duration: 0.75s;
137
+ }
138
+ .animated.flipOutY {
139
+ animation-name: flipOutY;
140
+ backface-visibility: visible;
141
+ animation-duration: 0.75s;
142
+ }
143
+ .animated.headShake {
144
+ animation-name: headShake;
145
+ animation-timing-function: ease-in-out;
146
+ }
147
+ .animated.hinge {
148
+ animation-name: hinge;
149
+ animation-duration: 2s;
150
+ }
151
+ .animated.jackInTheBox {
152
+ animation-name: jackInTheBox;
153
+ }
154
+ .animated.jello {
155
+ animation-name: jello;
156
+ transform-origin: center;
157
+ }
158
+ .animated.lightSpeedIn {
159
+ animation-name: lightSpeedIn;
160
+ animation-timing-function: ease-out;
161
+ }
162
+ .animated.lightSpeedOut {
163
+ animation-name: lightSpeedOut;
164
+ animation-timing-function: ease-in;
165
+ }
166
+ .animated.pulse {
167
+ animation-name: pulse;
168
+ }
169
+ .animated.rollIn {
170
+ animation-name: rollIn;
171
+ }
172
+ .animated.rollOut {
173
+ animation-name: rollOut;
174
+ }
175
+ .animated.rotate {
176
+ animation-name: rotate;
177
+ }
178
+ .animated.rotateCC {
179
+ animation-name: rotateCC;
180
+ }
181
+ .animated.rotateIn {
182
+ animation-name: rotateIn;
183
+ }
184
+ .animated.rotateInDownLeft {
185
+ animation-name: rotateInDownLeft;
186
+ }
187
+ .animated.rotateInDownRight {
188
+ animation-name: rotateInDownRight;
189
+ }
190
+ .animated.rotateInUpLeft {
191
+ animation-name: rotateInUpLeft;
192
+ }
193
+ .animated.rotateInUpRight {
194
+ animation-name: rotateInUpRight;
195
+ }
196
+ .animated.rotateOut {
197
+ animation-name: rotateOut;
198
+ }
199
+ .animated.rotateOutDownLeft {
200
+ animation-name: rotateOutDownLeft;
201
+ }
202
+ .animated.rotateOutDownRight {
203
+ animation-name: rotateOutDownRight;
204
+ }
205
+ .animated.rotateOutUpLeft {
206
+ animation-name: rotateOutUpLeft;
207
+ }
208
+ .animated.rotateOutUpRight {
209
+ animation-name: rotateOutUpRight;
210
+ }
211
+ .animated.rotateZoomIn {
212
+ animation-name: rotateZoomIn;
213
+ }
214
+ .animated.rotateZoomInCC {
215
+ animation-name: rotateZoomInCC;
216
+ }
217
+ .animated.rotateZoomOut {
218
+ animation-name: rotateZoomOut;
219
+ }
220
+ .animated.rotateZoomOutCC {
221
+ animation-name: rotateZoomOutCC;
222
+ }
223
+ .animated.rubberBand {
224
+ animation-name: rubberBand;
225
+ }
226
+ .animated.shake {
227
+ animation-name: shake;
228
+ }
229
+ .animated.slideInDown {
230
+ animation-name: slideInDown;
231
+ }
232
+ .animated.slideInLeft {
233
+ animation-name: slideInLeft;
234
+ }
235
+ .animated.slideInRight {
236
+ animation-name: slideInRight;
237
+ }
238
+ .animated.slideInUp {
239
+ animation-name: slideInUp;
240
+ }
241
+ .animated.slideOutDown {
242
+ animation-name: slideOutDown;
243
+ }
244
+ .animated.slideOutLeft {
245
+ animation-name: slideOutLeft;
246
+ }
247
+ .animated.slideOutRight {
248
+ animation-name: slideOutRight;
249
+ }
250
+ .animated.slideOutUp {
251
+ animation-name: slideOutUp;
252
+ }
253
+ .animated.swing {
254
+ animation-name: swing;
255
+ transform-origin: top center;
256
+ }
257
+ .animated.tada {
258
+ animation-name: tada;
259
+ }
260
+ .animated.wobble {
261
+ animation-name: wobble;
262
+ }
263
+ .animated.zoomIn {
264
+ animation-name: zoomIn;
265
+ }
266
+ .animated.zoomInDown {
267
+ animation-name: zoomInDown;
268
+ }
269
+ .animated.zoomInLeft {
270
+ animation-name: zoomInLeft;
271
+ }
272
+ .animated.zoomInRight {
273
+ animation-name: zoomInRight;
274
+ }
275
+ .animated.zoomInUp {
276
+ animation-name: zoomInUp;
277
+ }
278
+ .animated.zoomOut {
279
+ animation-name: zoomOut;
280
+ }
281
+ .animated.zoomOutDown {
282
+ animation-name: zoomOutDown;
283
+ }
284
+ .animated.zoomOutLeft {
285
+ animation-name: zoomOutLeft;
286
+ }
287
+ .animated.zoomOutRight {
288
+ animation-name: zoomOutRight;
289
+ }
290
+ .animated.zoomOutUp {
291
+ animation-name: zoomOutUp;
292
+ }
293
+ /*
294
+ [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
295
+ [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
296
+ [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
297
+ */
298
+ @keyframes bounce {
299
+ from,
300
+ 20%,
301
+ 53%,
302
+ 80%,
303
+ to {
304
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
305
+ transform: translate3d(0, 0, 0);
306
+ }
307
+ 40%,
308
+ 43% {
309
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
310
+ transform: translate3d(0, -30px, 0);
311
+ }
312
+ 70% {
313
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
314
+ transform: translate3d(0, -15px, 0);
315
+ }
316
+ 90% {
317
+ transform: translate3d(0, -4px, 0);
318
+ }
319
+ }
320
+ @keyframes bounceIn {
321
+ from,
322
+ 20%,
323
+ 40%,
324
+ 60%,
325
+ 80%,
326
+ to {
327
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
328
+ }
329
+ from {
330
+ opacity: 0;
331
+ transform: scale3d(0.3, 0.3, 0.3);
332
+ }
333
+ 20% {
334
+ transform: scale3d(1.1, 1.1, 1.1);
335
+ }
336
+ 40% {
337
+ transform: scale3d(0.9, 0.9, 0.9);
338
+ }
339
+ 60% {
340
+ opacity: 1;
341
+ transform: scale3d(1.03, 1.03, 1.03);
342
+ }
343
+ 80% {
344
+ transform: scale3d(0.97, 0.97, 0.97);
345
+ }
346
+ to {
347
+ opacity: 1;
348
+ transform: scale3d(1, 1, 1);
349
+ }
350
+ }
351
+ @keyframes bounceInDown {
352
+ from,
353
+ 60%,
354
+ 75%,
355
+ 90%,
356
+ to {
357
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
358
+ }
359
+ from {
360
+ opacity: 0;
361
+ transform: translate3d(0, -3000px, 0);
362
+ }
363
+ 60% {
364
+ opacity: 1;
365
+ transform: translate3d(0, 25px, 0);
366
+ }
367
+ 75% {
368
+ transform: translate3d(0, -10px, 0);
369
+ }
370
+ 90% {
371
+ transform: translate3d(0, 5px, 0);
372
+ }
373
+ to {
374
+ transform: translate3d(0, 0, 0);
375
+ }
376
+ }
377
+ @keyframes bounceInLeft {
378
+ from,
379
+ 60%,
380
+ 75%,
381
+ 90%,
382
+ to {
383
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
384
+ }
385
+ from {
386
+ opacity: 0;
387
+ transform: translate3d(-3000px, 0, 0);
388
+ }
389
+ 60% {
390
+ opacity: 1;
391
+ transform: translate3d(25px, 0, 0);
392
+ }
393
+ 75% {
394
+ transform: translate3d(-10px, 0, 0);
395
+ }
396
+ 90% {
397
+ transform: translate3d(5px, 0, 0);
398
+ }
399
+ to {
400
+ transform: translate3d(0, 0, 0);
401
+ }
402
+ }
403
+ @keyframes bounceInRight {
404
+ from,
405
+ 60%,
406
+ 75%,
407
+ 90%,
408
+ to {
409
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
410
+ }
411
+ from {
412
+ opacity: 0;
413
+ transform: translate3d(3000px, 0, 0);
414
+ }
415
+ 60% {
416
+ opacity: 1;
417
+ transform: translate3d(-25px, 0, 0);
418
+ }
419
+ 75% {
420
+ transform: translate3d(10px, 0, 0);
421
+ }
422
+ 90% {
423
+ transform: translate3d(-5px, 0, 0);
424
+ }
425
+ to {
426
+ transform: translate3d(0, 0, 0);
427
+ }
428
+ }
429
+ @keyframes bounceInUp {
430
+ from,
431
+ 60%,
432
+ 75%,
433
+ 90%,
434
+ to {
435
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
436
+ }
437
+ from {
438
+ opacity: 0;
439
+ transform: translate3d(0, 3000px, 0);
440
+ }
441
+ 60% {
442
+ opacity: 1;
443
+ transform: translate3d(0, -20px, 0);
444
+ }
445
+ 75% {
446
+ transform: translate3d(0, 10px, 0);
447
+ }
448
+ 90% {
449
+ transform: translate3d(0, -5px, 0);
450
+ }
451
+ to {
452
+ transform: translate3d(0, 0, 0);
453
+ }
454
+ }
455
+ @keyframes bounceOut {
456
+ 20% {
457
+ transform: scale3d(0.9, 0.9, 0.9);
458
+ }
459
+ 50%,
460
+ 55% {
461
+ opacity: 1;
462
+ transform: scale3d(1.1, 1.1, 1.1);
463
+ }
464
+ to {
465
+ opacity: 0;
466
+ transform: scale3d(0.3, 0.3, 0.3);
467
+ }
468
+ }
469
+ @keyframes bounceOutDown {
470
+ 20% {
471
+ transform: translate3d(0, 10px, 0);
472
+ }
473
+ 40%,
474
+ 45% {
475
+ opacity: 1;
476
+ transform: translate3d(0, -20px, 0);
477
+ }
478
+ to {
479
+ opacity: 0;
480
+ transform: translate3d(0, 2000px, 0);
481
+ }
482
+ }
483
+ @keyframes bounceOutLeft {
484
+ 20% {
485
+ opacity: 1;
486
+ transform: translate3d(20px, 0, 0);
487
+ }
488
+ to {
489
+ opacity: 0;
490
+ transform: translate3d(-2000px, 0, 0);
491
+ }
492
+ }
493
+ @keyframes bounceOutRight {
494
+ 20% {
495
+ opacity: 1;
496
+ transform: translate3d(-20px, 0, 0);
497
+ }
498
+ to {
499
+ opacity: 0;
500
+ transform: translate3d(2000px, 0, 0);
501
+ }
502
+ }
503
+ @keyframes bounceOutUp {
504
+ 20% {
505
+ transform: translate3d(0, -10px, 0);
506
+ }
507
+ 40%,
508
+ 45% {
509
+ opacity: 1;
510
+ transform: translate3d(0, 20px, 0);
511
+ }
512
+ to {
513
+ opacity: 0;
514
+ transform: translate3d(0, -2000px, 0);
515
+ }
516
+ }
517
+ @keyframes fadeIn {
518
+ from {
519
+ opacity: 0;
520
+ }
521
+ to {
522
+ opacity: 1;
523
+ }
524
+ }
525
+ @keyframes fadeInDown {
526
+ from {
527
+ opacity: 0;
528
+ transform: translate3d(0, -100%, 0);
529
+ }
530
+ to {
531
+ opacity: 1;
532
+ transform: translate3d(0, 0, 0);
533
+ }
534
+ }
535
+ @keyframes fadeInDownBig {
536
+ from {
537
+ opacity: 0;
538
+ transform: translate3d(0, -2000px, 0);
539
+ }
540
+ to {
541
+ opacity: 1;
542
+ transform: translate3d(0, 0, 0);
543
+ }
544
+ }
545
+ @keyframes fadeInLeft {
546
+ from {
547
+ opacity: 0;
548
+ transform: translate3d(-100%, 0, 0);
549
+ }
550
+ to {
551
+ opacity: 1;
552
+ transform: translate3d(0, 0, 0);
553
+ }
554
+ }
555
+ @keyframes fadeInLeftBig {
556
+ from {
557
+ opacity: 0;
558
+ transform: translate3d(-2000px, 0, 0);
559
+ }
560
+ to {
561
+ opacity: 1;
562
+ transform: translate3d(0, 0, 0);
563
+ }
564
+ }
565
+ @keyframes fadeInRight {
566
+ from {
567
+ opacity: 0;
568
+ transform: translate3d(100%, 0, 0);
569
+ }
570
+ to {
571
+ opacity: 1;
572
+ transform: translate3d(0, 0, 0);
573
+ }
574
+ }
575
+ @keyframes fadeInRightBig {
576
+ from {
577
+ opacity: 0;
578
+ transform: translate3d(2000px, 0, 0);
579
+ }
580
+ to {
581
+ opacity: 1;
582
+ transform: translate3d(0, 0, 0);
583
+ }
584
+ }
585
+ @keyframes fadeInUp {
586
+ from {
587
+ opacity: 0;
588
+ transform: translate3d(0, 100%, 0);
589
+ }
590
+ to {
591
+ opacity: 1;
592
+ transform: translate3d(0, 0, 0);
593
+ }
594
+ }
595
+ @keyframes fadeInUpBig {
596
+ from {
597
+ opacity: 0;
598
+ transform: translate3d(0, 2000px, 0);
599
+ }
600
+ to {
601
+ opacity: 1;
602
+ transform: translate3d(0, 0, 0);
603
+ }
604
+ }
605
+ @keyframes fadeOut {
606
+ from {
607
+ opacity: 1;
608
+ }
609
+ to {
610
+ opacity: 0;
611
+ }
612
+ }
613
+ @keyframes fadeOutDown {
614
+ from {
615
+ opacity: 1;
616
+ }
617
+ to {
618
+ opacity: 0;
619
+ transform: translate3d(0, 100%, 0);
620
+ }
621
+ }
622
+ @keyframes fadeOutDownBig {
623
+ from {
624
+ opacity: 1;
625
+ }
626
+ to {
627
+ opacity: 0;
628
+ transform: translate3d(0, 2000px, 0);
629
+ }
630
+ }
631
+ @keyframes fadeOutLeft {
632
+ from {
633
+ opacity: 1;
634
+ }
635
+ to {
636
+ opacity: 0;
637
+ transform: translate3d(-100%, 0, 0);
638
+ }
639
+ }
640
+ @keyframes fadeOutLeftBig {
641
+ from {
642
+ opacity: 1;
643
+ }
644
+ to {
645
+ opacity: 0;
646
+ transform: translate3d(-2000px, 0, 0);
647
+ }
648
+ }
649
+ @keyframes fadeOutRight {
650
+ from {
651
+ opacity: 1;
652
+ }
653
+ to {
654
+ opacity: 0;
655
+ transform: translate3d(100%, 0, 0);
656
+ }
657
+ }
658
+ @keyframes fadeOutRightBig {
659
+ from {
660
+ opacity: 1;
661
+ }
662
+ to {
663
+ opacity: 0;
664
+ transform: translate3d(2000px, 0, 0);
665
+ }
666
+ }
667
+ @keyframes fadeOutUp {
668
+ from {
669
+ opacity: 1;
670
+ }
671
+ to {
672
+ opacity: 0;
673
+ transform: translate3d(0, -100%, 0);
674
+ }
675
+ }
676
+ @keyframes fadeOutUpBig {
677
+ from {
678
+ opacity: 1;
679
+ }
680
+ to {
681
+ opacity: 0;
682
+ transform: translate3d(0, -2000px, 0);
683
+ }
684
+ }
685
+ @keyframes flash {
686
+ from,
687
+ 50%,
688
+ to {
689
+ opacity: 1;
690
+ }
691
+ 25%,
692
+ 75% {
693
+ opacity: 0;
694
+ }
695
+ }
696
+ @keyframes flashmin {
697
+ from,
698
+ 50%,
699
+ to {
700
+ opacity: 1;
701
+ }
702
+ 25%,
703
+ 75% {
704
+ opacity: 0.33;
705
+ }
706
+ }
707
+ @keyframes flip {
708
+ from {
709
+ transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
710
+ animation-timing-function: ease-out;
711
+ }
712
+ 40% {
713
+ transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
714
+ animation-timing-function: ease-out;
715
+ }
716
+ 50% {
717
+ transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
718
+ animation-timing-function: ease-in;
719
+ }
720
+ 80% {
721
+ transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
722
+ animation-timing-function: ease-in;
723
+ }
724
+ to {
725
+ transform: perspective(400px);
726
+ animation-timing-function: ease-in;
727
+ }
728
+ }
729
+ @keyframes flipInX {
730
+ from {
731
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
732
+ animation-timing-function: ease-in;
733
+ opacity: 0;
734
+ }
735
+ 40% {
736
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
737
+ animation-timing-function: ease-in;
738
+ }
739
+ 60% {
740
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
741
+ opacity: 1;
742
+ }
743
+ 80% {
744
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
745
+ }
746
+ to {
747
+ transform: perspective(400px);
748
+ }
749
+ }
750
+ @keyframes flipInY {
751
+ from {
752
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
753
+ animation-timing-function: ease-in;
754
+ opacity: 0;
755
+ }
756
+ 40% {
757
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
758
+ animation-timing-function: ease-in;
759
+ }
760
+ 60% {
761
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
762
+ opacity: 1;
763
+ }
764
+ 80% {
765
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
766
+ }
767
+ to {
768
+ transform: perspective(400px);
769
+ }
770
+ }
771
+ @keyframes flipOutX {
772
+ from {
773
+ transform: perspective(400px);
774
+ }
775
+ 30% {
776
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
777
+ opacity: 1;
778
+ }
779
+ to {
780
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
781
+ opacity: 0;
782
+ }
783
+ }
784
+ @keyframes flipOutY {
785
+ from {
786
+ transform: perspective(400px);
787
+ }
788
+ 30% {
789
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
790
+ opacity: 1;
791
+ }
792
+ to {
793
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
794
+ opacity: 0;
795
+ }
796
+ }
797
+ @keyframes headShake {
798
+ from {
799
+ transform: translateX(0);
800
+ }
801
+ 6.5% {
802
+ transform: translateX(-6px) rotateY(-9deg);
803
+ }
804
+ 18.5% {
805
+ transform: translateX(5px) rotateY(7deg);
806
+ }
807
+ 31.5% {
808
+ transform: translateX(-3px) rotateY(-5deg);
809
+ }
810
+ 43.5% {
811
+ transform: translateX(2px) rotateY(3deg);
812
+ }
813
+ 50% {
814
+ transform: translateX(0);
815
+ }
816
+ }
817
+ @keyframes hinge {
818
+ from {
819
+ transform-origin: top left;
820
+ animation-timing-function: ease-in-out;
821
+ }
822
+ 20%,
823
+ 60% {
824
+ transform-origin: top left;
825
+ animation-timing-function: ease-in-out;
826
+ transform: rotate3d(0, 0, 1, 80deg);
827
+ }
828
+ 40%,
829
+ 80% {
830
+ transform-origin: top left;
831
+ animation-timing-function: ease-in-out;
832
+ transform: rotate3d(0, 0, 1, 60deg);
833
+ opacity: 1;
834
+ }
835
+ to {
836
+ transform: translate3d(0, 700px, 0);
837
+ opacity: 0;
838
+ }
839
+ }
840
+ @keyframes jackInTheBox {
841
+ from {
842
+ opacity: 0;
843
+ transform: scale(0.1) rotate(30deg);
844
+ transform-origin: center bottom;
845
+ }
846
+ 50% {
847
+ transform: rotate(-10deg);
848
+ }
849
+ 70% {
850
+ transform: rotate(3deg);
851
+ }
852
+ to {
853
+ opacity: 1;
854
+ transform: scale(1);
855
+ }
856
+ }
857
+ @keyframes jello {
858
+ from,
859
+ 11.1% {
860
+ transform: translate3d(0, 0, 0);
861
+ }
862
+ 22.2% {
863
+ transform: skewX(-12.5deg) skewY(-12.5deg);
864
+ }
865
+ 33.3% {
866
+ transform: skewX(6.25deg) skewY(6.25deg);
867
+ }
868
+ 44.4% {
869
+ transform: skewX(-3.125deg) skewY(-3.125deg);
870
+ }
871
+ 55.5% {
872
+ transform: skewX(1.5625deg) skewY(1.5625deg);
873
+ }
874
+ 66.6% {
875
+ transform: skewX(-0.78125deg) skewY(-0.78125deg);
876
+ }
877
+ 77.7% {
878
+ transform: skewX(0.390625deg) skewY(0.390625deg);
879
+ }
880
+ 88.8% {
881
+ transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
882
+ }
883
+ }
884
+ @keyframes lightSpeedIn {
885
+ from {
886
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
887
+ opacity: 0;
888
+ }
889
+ 60% {
890
+ transform: skewX(20deg);
891
+ opacity: 1;
892
+ }
893
+ 80% {
894
+ transform: skewX(-5deg);
895
+ opacity: 1;
896
+ }
897
+ to {
898
+ transform: translate3d(0, 0, 0);
899
+ opacity: 1;
900
+ }
901
+ }
902
+ @keyframes lightSpeedOut {
903
+ from {
904
+ opacity: 1;
905
+ }
906
+ to {
907
+ opacity: 0;
908
+ transform: translate3d(100%, 0, 0) skewX(30deg);
909
+ }
910
+ }
911
+ @keyframes pulse {
912
+ from {
913
+ transform: scale3d(1, 1, 1);
914
+ }
915
+ 50% {
916
+ transform: scale3d(1.05, 1.05, 1.05);
917
+ }
918
+ to {
919
+ transform: scale3d(1, 1, 1);
920
+ }
921
+ }
922
+ @keyframes rollIn {
923
+ from {
924
+ opacity: 0;
925
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
926
+ }
927
+ to {
928
+ opacity: 1;
929
+ transform: translate3d(0, 0, 0);
930
+ }
931
+ }
932
+ @keyframes rollOut {
933
+ from {
934
+ opacity: 1;
935
+ }
936
+ to {
937
+ opacity: 0;
938
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
939
+ }
940
+ }
941
+ @keyframes rotate {
942
+ from {
943
+ transform-origin: center;
944
+ transform: rotate(-360deg);
945
+ }
946
+ to {
947
+ transform-origin: center;
948
+ transform: rotate(0deg);
949
+ }
950
+ }
951
+ @keyframes rotateCC {
952
+ from {
953
+ transform-origin: center;
954
+ transform: rotate(360deg);
955
+ }
956
+ to {
957
+ transform-origin: center;
958
+ transform: rotate(0deg);
959
+ }
960
+ }
961
+ @keyframes rotateIn {
962
+ from {
963
+ opacity: 0;
964
+ transform-origin: center;
965
+ transform: rotate3d(0, 0, 1, -200deg);
966
+ }
967
+ to {
968
+ opacity: 1;
969
+ transform-origin: center;
970
+ transform: translate3d(0, 0, 0);
971
+ }
972
+ }
973
+ @keyframes rotateInDownLeft {
974
+ from {
975
+ opacity: 0;
976
+ transform-origin: left bottom;
977
+ transform: rotate3d(0, 0, 1, -45deg);
978
+ }
979
+ to {
980
+ opacity: 1;
981
+ transform-origin: left bottom;
982
+ transform: translate3d(0, 0, 0);
983
+ }
984
+ }
985
+ @keyframes rotateInDownRight {
986
+ from {
987
+ opacity: 0;
988
+ transform-origin: right bottom;
989
+ transform: rotate3d(0, 0, 1, 45deg);
990
+ }
991
+ to {
992
+ opacity: 1;
993
+ transform-origin: right bottom;
994
+ transform: translate3d(0, 0, 0);
995
+ }
996
+ }
997
+ @keyframes rotateInUpLeft {
998
+ from {
999
+ opacity: 0;
1000
+ transform-origin: left bottom;
1001
+ transform: rotate3d(0, 0, 1, 45deg);
1002
+ }
1003
+ to {
1004
+ opacity: 1;
1005
+ transform-origin: left bottom;
1006
+ transform: translate3d(0, 0, 0);
1007
+ }
1008
+ }
1009
+ @keyframes rotateInUpRight {
1010
+ from {
1011
+ opacity: 0;
1012
+ transform-origin: right bottom;
1013
+ transform: rotate3d(0, 0, 1, -90deg);
1014
+ }
1015
+ to {
1016
+ opacity: 1;
1017
+ transform-origin: right bottom;
1018
+ transform: translate3d(0, 0, 0);
1019
+ }
1020
+ }
1021
+ @keyframes rotateOut {
1022
+ from {
1023
+ opacity: 1;
1024
+ transform-origin: center;
1025
+ }
1026
+ to {
1027
+ opacity: 0;
1028
+ transform-origin: center;
1029
+ transform: rotate3d(0, 0, 1, 200deg);
1030
+ }
1031
+ }
1032
+ @keyframes rotateOutDownLeft {
1033
+ from {
1034
+ opacity: 1;
1035
+ transform-origin: left bottom;
1036
+ }
1037
+ to {
1038
+ opacity: 0;
1039
+ transform-origin: left bottom;
1040
+ transform: rotate3d(0, 0, 1, 45deg);
1041
+ }
1042
+ }
1043
+ @keyframes rotateOutDownRight {
1044
+ from {
1045
+ opacity: 1;
1046
+ transform-origin: right bottom;
1047
+ }
1048
+ to {
1049
+ opacity: 0;
1050
+ transform-origin: right bottom;
1051
+ transform: rotate3d(0, 0, 1, -45deg);
1052
+ }
1053
+ }
1054
+ @keyframes rotateOutUpLeft {
1055
+ from {
1056
+ opacity: 1;
1057
+ transform-origin: left bottom;
1058
+ }
1059
+ to {
1060
+ opacity: 0;
1061
+ transform-origin: left bottom;
1062
+ transform: rotate3d(0, 0, 1, -45deg);
1063
+ }
1064
+ }
1065
+ @keyframes rotateOutUpRight {
1066
+ from {
1067
+ opacity: 1;
1068
+ transform-origin: right bottom;
1069
+ }
1070
+ to {
1071
+ opacity: 0;
1072
+ transform-origin: right bottom;
1073
+ transform: rotate3d(0, 0, 1, 90deg);
1074
+ }
1075
+ }
1076
+ @keyframes rotateZoomIn {
1077
+ from {
1078
+ opacity: 0;
1079
+ transform-origin: center;
1080
+ transform: scale3d(0.3, 0.3, 0.3) rotate(-360deg);
1081
+ }
1082
+ to {
1083
+ opacity: 1;
1084
+ transform-origin: center;
1085
+ transform: scale3d(1, 1, 1) rotate(0deg);
1086
+ }
1087
+ }
1088
+ @keyframes rotateZoomInCC {
1089
+ from {
1090
+ opacity: 0;
1091
+ transform-origin: center;
1092
+ transform: scale3d(0.3, 0.3, 0.3) rotate(360deg);
1093
+ }
1094
+ to {
1095
+ opacity: 1;
1096
+ transform-origin: center;
1097
+ transform: scale3d(1, 1, 1) rotate(0deg);
1098
+ }
1099
+ }
1100
+ @keyframes rotateZoomOut {
1101
+ from {
1102
+ opacity: 1;
1103
+ transform-origin: center;
1104
+ transform: scale3d(1, 1, 1) rotate(0deg);
1105
+ }
1106
+ to {
1107
+ opacity: 0;
1108
+ transform-origin: center;
1109
+ transform: scale3d(0.3, 0.3, 0.3) rotate(360deg);
1110
+ }
1111
+ }
1112
+ @keyframes rotateZoomOutCC {
1113
+ from {
1114
+ opacity: 1;
1115
+ transform-origin: center;
1116
+ transform: scale3d(1, 1, 1) rotate(0deg);
1117
+ }
1118
+ to {
1119
+ opacity: 0;
1120
+ transform-origin: center;
1121
+ transform: scale3d(0.3, 0.3, 0.3) rotate(-360deg);
1122
+ }
1123
+ }
1124
+ @keyframes rubberBand {
1125
+ from {
1126
+ transform: scale3d(1, 1, 1);
1127
+ }
1128
+ 30% {
1129
+ transform: scale3d(1.25, 0.75, 1);
1130
+ }
1131
+ 40% {
1132
+ transform: scale3d(0.75, 1.25, 1);
1133
+ }
1134
+ 50% {
1135
+ transform: scale3d(1.15, 0.85, 1);
1136
+ }
1137
+ 65% {
1138
+ transform: scale3d(0.95, 1.05, 1);
1139
+ }
1140
+ 75% {
1141
+ transform: scale3d(1.05, 0.95, 1);
1142
+ }
1143
+ to {
1144
+ transform: scale3d(1, 1, 1);
1145
+ }
1146
+ }
1147
+ @keyframes shake {
1148
+ from,
1149
+ 100% {
1150
+ transform: translate3d(0, 0, 0);
1151
+ }
1152
+ 10%,
1153
+ 30%,
1154
+ 50%,
1155
+ 70%,
1156
+ 90% {
1157
+ transform: translate3d(-10px, 0, 0);
1158
+ }
1159
+ 20%,
1160
+ 40%,
1161
+ 60%,
1162
+ 80% {
1163
+ transform: translate3d(10px, 0, 0);
1164
+ }
1165
+ }
1166
+ @keyframes slideInDown {
1167
+ from {
1168
+ transform: translate3d(0, -100%, 0);
1169
+ visibility: visible;
1170
+ }
1171
+ to {
1172
+ transform: translate3d(0, 0, 0);
1173
+ }
1174
+ }
1175
+ @keyframes slideInLeft {
1176
+ from {
1177
+ transform: translate3d(-100%, 0, 0);
1178
+ visibility: visible;
1179
+ }
1180
+ to {
1181
+ transform: translate3d(0, 0, 0);
1182
+ }
1183
+ }
1184
+ @keyframes slideInRight {
1185
+ from {
1186
+ transform: translate3d(100%, 0, 0);
1187
+ visibility: visible;
1188
+ }
1189
+ to {
1190
+ transform: translate3d(0, 0, 0);
1191
+ }
1192
+ }
1193
+ @keyframes slideInUp {
1194
+ from {
1195
+ transform: translate3d(0, 100%, 0);
1196
+ visibility: visible;
1197
+ }
1198
+ to {
1199
+ transform: translate3d(0, 0, 0);
1200
+ }
1201
+ }
1202
+ @keyframes slideOutDown {
1203
+ from {
1204
+ transform: translate3d(0, 0, 0);
1205
+ }
1206
+ to {
1207
+ visibility: hidden;
1208
+ transform: translate3d(0, 100%, 0);
1209
+ }
1210
+ }
1211
+ @keyframes slideOutLeft {
1212
+ from {
1213
+ transform: translate3d(0, 0, 0);
1214
+ }
1215
+ to {
1216
+ visibility: hidden;
1217
+ transform: translate3d(-100%, 0, 0);
1218
+ }
1219
+ }
1220
+ @keyframes slideOutRight {
1221
+ from {
1222
+ transform: translate3d(0, 0, 0);
1223
+ }
1224
+ to {
1225
+ visibility: hidden;
1226
+ transform: translate3d(100%, 0, 0);
1227
+ }
1228
+ }
1229
+ @keyframes slideOutUp {
1230
+ from {
1231
+ transform: translate3d(0, 0, 0);
1232
+ }
1233
+ to {
1234
+ transform: translate3d(0, -100%, 0);
1235
+ visibility: hidden;
1236
+ }
1237
+ }
1238
+ @keyframes swing {
1239
+ 20% {
1240
+ transform: rotate3d(0, 0, 1, 15deg);
1241
+ }
1242
+ 40% {
1243
+ transform: rotate3d(0, 0, 1, -10deg);
1244
+ }
1245
+ 60% {
1246
+ transform: rotate3d(0, 0, 1, 5deg);
1247
+ }
1248
+ 80% {
1249
+ transform: rotate3d(0, 0, 1, -5deg);
1250
+ }
1251
+ to {
1252
+ transform: rotate3d(0, 0, 1, 0deg);
1253
+ }
1254
+ }
1255
+ @keyframes tada {
1256
+ from {
1257
+ transform: scale3d(1, 1, 1);
1258
+ }
1259
+ 10%,
1260
+ 20% {
1261
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1262
+ }
1263
+ 30%,
1264
+ 50%,
1265
+ 70%,
1266
+ 90% {
1267
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1268
+ }
1269
+ 40%,
1270
+ 60%,
1271
+ 80% {
1272
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1273
+ }
1274
+ to {
1275
+ transform: scale3d(1, 1, 1);
1276
+ }
1277
+ }
1278
+ @keyframes wobble {
1279
+ from {
1280
+ transform: translate3d(0, 0, 0);
1281
+ }
1282
+ 15% {
1283
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1284
+ }
1285
+ 30% {
1286
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1287
+ }
1288
+ 45% {
1289
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1290
+ }
1291
+ 60% {
1292
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1293
+ }
1294
+ 75% {
1295
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1296
+ }
1297
+ to {
1298
+ transform: translate3d(0, 0, 0);
1299
+ }
1300
+ }
1301
+ @keyframes zoomIn {
1302
+ from {
1303
+ opacity: 0;
1304
+ transform: scale3d(0.3, 0.3, 0.3);
1305
+ }
1306
+ 50% {
1307
+ opacity: 1;
1308
+ }
1309
+ }
1310
+ @keyframes zoomInDown {
1311
+ from {
1312
+ opacity: 0;
1313
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
1314
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1315
+ }
1316
+ 60% {
1317
+ opacity: 1;
1318
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
1319
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1320
+ }
1321
+ }
1322
+ @keyframes zoomInLeft {
1323
+ from {
1324
+ opacity: 0;
1325
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
1326
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1327
+ }
1328
+ 60% {
1329
+ opacity: 1;
1330
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
1331
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1332
+ }
1333
+ }
1334
+ @keyframes zoomInRight {
1335
+ from {
1336
+ opacity: 0;
1337
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
1338
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1339
+ }
1340
+ 60% {
1341
+ opacity: 1;
1342
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
1343
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1344
+ }
1345
+ }
1346
+ @keyframes zoomInUp {
1347
+ from {
1348
+ opacity: 0;
1349
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
1350
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1351
+ }
1352
+ 60% {
1353
+ opacity: 1;
1354
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
1355
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1356
+ }
1357
+ }
1358
+ @keyframes zoomOut {
1359
+ from {
1360
+ opacity: 1;
1361
+ }
1362
+ 50% {
1363
+ opacity: 0;
1364
+ transform: scale3d(0.3, 0.3, 0.3);
1365
+ }
1366
+ to {
1367
+ opacity: 0;
1368
+ }
1369
+ }
1370
+ @keyframes zoomOutDown {
1371
+ 40% {
1372
+ opacity: 1;
1373
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
1374
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1375
+ }
1376
+ to {
1377
+ opacity: 0;
1378
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
1379
+ transform-origin: center bottom;
1380
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1381
+ }
1382
+ }
1383
+ @keyframes zoomOutLeft {
1384
+ 40% {
1385
+ opacity: 1;
1386
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
1387
+ }
1388
+ to {
1389
+ opacity: 0;
1390
+ transform: scale(0.1) translate3d(-2000px, 0, 0);
1391
+ transform-origin: left center;
1392
+ }
1393
+ }
1394
+ @keyframes zoomOutRight {
1395
+ 40% {
1396
+ opacity: 1;
1397
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
1398
+ }
1399
+ to {
1400
+ opacity: 0;
1401
+ transform: scale(0.1) translate3d(2000px, 0, 0);
1402
+ transform-origin: right center;
1403
+ }
1404
+ }
1405
+ @keyframes zoomOutUp {
1406
+ 40% {
1407
+ opacity: 1;
1408
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
1409
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1410
+ }
1411
+ to {
1412
+ opacity: 0;
1413
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
1414
+ transform-origin: center bottom;
1415
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1416
+ }
1417
+ }