-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.js
112 lines (110 loc) · 1.71 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import {
flipObj,
specialObj,
slideObj,
rotateObj,
PObj,
lightObj,
fadeObj,
expanseObj,
bounceObj,
bingoObj,
} from './animations/index';
import Merge from './containers/merge';
import Delay from './containers/Delay';
import Disappear from './containers/Disappear';
const { Bounce, BounceUp, BounceRight, BounceLeft, BounceDown } = bounceObj;
const {
FadeIn,
FadeInUp,
FadeInRight,
FadeInLeft,
FadeInDown,
FadeInUpBig,
FadeInRightBig,
FadeInLeftBig,
} = fadeObj;
const { Flip, FlipX, FlipY } = flipObj;
const { LightOut, LightIn } = lightObj;
const {
RotateIn,
RotateRight,
RotateLeft,
RotateUpRight,
RotateUpLeft,
} = rotateObj;
const {
Flash,
RollOut,
RollIn,
Rubber,
Swing,
Zoom,
Hinge,
Pulse,
ExpandUp,
Entrance,
Hatch,
StarWars,
} = specialObj;
const { SlideUp, SlideRight, SlideLeft, SlideDown } = slideObj;
const { PDown, PUp, PRight, PLeft } = PObj;
const { PuffOut, PuffIn, VanishOut, VanishIn } = bingoObj;
const { ExpanseUp, ExpanseRight, ExpanseDown, ExpanseLeft } = expanseObj;
/** Animation components */
export {
Bounce,
BounceUp,
BounceRight,
BounceLeft,
BounceDown,
FadeIn,
FadeInUp,
FadeInRight,
FadeInLeft,
FadeInDown,
FadeInUpBig,
FadeInLeftBig,
FadeInRightBig,
Flip,
FlipX,
FlipY,
LightOut,
LightIn,
RotateIn,
RotateRight,
RotateLeft,
RotateUpRight,
RotateUpLeft,
Flash,
RollOut,
RollIn,
Rubber,
Swing,
Zoom,
Hinge,
Pulse,
SlideUp,
SlideDown,
SlideLeft,
SlideRight,
StarWars,
ExpandUp,
Entrance,
Hatch,
PDown,
PUp,
PRight,
PLeft,
PuffIn,
PuffOut,
VanishIn,
VanishOut,
ExpanseLeft,
ExpanseRight,
ExpanseDown,
ExpanseUp,
Merge,
Delay,
Disappear,
};