Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Commit d761872

Browse files
author
Brandon Dail
committed
Add list of animations to README
1 parent 9c8edf6 commit d761872

File tree

2 files changed

+310
-0
lines changed

2 files changed

+310
-0
lines changed

README.md

Lines changed: 309 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,312 @@ const styles = StyleSheet.create({
3636
}
3737
})
3838
```
39+
40+
## Animations
41+
42+
Below is a list of all available animations
43+
44+
### `bouceOut`
45+
```js
46+
import bouceOut from 'lib/bouceOut'
47+
```
48+
### `bounce`
49+
```js
50+
import bounce from 'lib/bounce'
51+
```
52+
### `bounceIn`
53+
```js
54+
import bounceIn from 'lib/bounceIn'
55+
```
56+
### `bounceInDown`
57+
```js
58+
import bounceInDown from 'lib/bounceInDown'
59+
```
60+
### `bounceInLeft`
61+
```js
62+
import bounceInLeft from 'lib/bounceInLeft'
63+
```
64+
### `bounceInRight`
65+
```js
66+
import bounceInRight from 'lib/bounceInRight'
67+
```
68+
### `bounceInUp`
69+
```js
70+
import bounceInUp from 'lib/bounceInUp'
71+
```
72+
### `bounceOutDown`
73+
```js
74+
import bounceOutDown from 'lib/bounceOutDown'
75+
```
76+
### `bounceOutLeft`
77+
```js
78+
import bounceOutLeft from 'lib/bounceOutLeft'
79+
```
80+
### `bounceOutRight`
81+
```js
82+
import bounceOutRight from 'lib/bounceOutRight'
83+
```
84+
### `bounceOutUp`
85+
```js
86+
import bounceOutUp from 'lib/bounceOutUp'
87+
```
88+
### `fadeIn`
89+
```js
90+
import fadeIn from 'lib/fadeIn'
91+
```
92+
### `fadeInDown`
93+
```js
94+
import fadeInDown from 'lib/fadeInDown'
95+
```
96+
### `fadeInDownBig`
97+
```js
98+
import fadeInDownBig from 'lib/fadeInDownBig'
99+
```
100+
### `fadeInLeft`
101+
```js
102+
import fadeInLeft from 'lib/fadeInLeft'
103+
```
104+
### `fadeInLeftBig`
105+
```js
106+
import fadeInLeftBig from 'lib/fadeInLeftBig'
107+
```
108+
### `fadeInRight`
109+
```js
110+
import fadeInRight from 'lib/fadeInRight'
111+
```
112+
### `fadeInRightBig`
113+
```js
114+
import fadeInRightBig from 'lib/fadeInRightBig'
115+
```
116+
### `fadeInUp`
117+
```js
118+
import fadeInUp from 'lib/fadeInUp'
119+
```
120+
### `fadeInUpBig`
121+
```js
122+
import fadeInUpBig from 'lib/fadeInUpBig'
123+
```
124+
### `fadeOut`
125+
```js
126+
import fadeOut from 'lib/fadeOut'
127+
```
128+
### `fadeOutDown`
129+
```js
130+
import fadeOutDown from 'lib/fadeOutDown'
131+
```
132+
### `fadeOutDownBig`
133+
```js
134+
import fadeOutDownBig from 'lib/fadeOutDownBig'
135+
```
136+
### `fadeOutLeft`
137+
```js
138+
import fadeOutLeft from 'lib/fadeOutLeft'
139+
```
140+
### `fadeOutLeftBig`
141+
```js
142+
import fadeOutLeftBig from 'lib/fadeOutLeftBig'
143+
```
144+
### `fadeOutRight`
145+
```js
146+
import fadeOutRight from 'lib/fadeOutRight'
147+
```
148+
### `fadeOutRightBig`
149+
```js
150+
import fadeOutRightBig from 'lib/fadeOutRightBig'
151+
```
152+
### `fadeOutUp`
153+
```js
154+
import fadeOutUp from 'lib/fadeOutUp'
155+
```
156+
### `fadeOutUpBig`
157+
```js
158+
import fadeOutUpBig from 'lib/fadeOutUpBig'
159+
```
160+
### `flash`
161+
```js
162+
import flash from 'lib/flash'
163+
```
164+
### `flip`
165+
```js
166+
import flip from 'lib/flip'
167+
```
168+
### `flipInX`
169+
```js
170+
import flipInX from 'lib/flipInX'
171+
```
172+
### `flipInY`
173+
```js
174+
import flipInY from 'lib/flipInY'
175+
```
176+
### `flipOutX`
177+
```js
178+
import flipOutX from 'lib/flipOutX'
179+
```
180+
### `flipOutY`
181+
```js
182+
import flipOutY from 'lib/flipOutY'
183+
```
184+
### `headShake`
185+
```js
186+
import headShake from 'lib/headShake'
187+
```
188+
### `hinge`
189+
```js
190+
import hinge from 'lib/hinge'
191+
```
192+
### `jello`
193+
```js
194+
import jello from 'lib/jello'
195+
```
196+
### `lightSpeedIn`
197+
```js
198+
import lightSpeedIn from 'lib/lightSpeedIn'
199+
```
200+
### `lightSpeedOut`
201+
```js
202+
import lightSpeedOut from 'lib/lightSpeedOut'
203+
```
204+
### `pulse`
205+
```js
206+
import pulse from 'lib/pulse'
207+
```
208+
### `rollIn`
209+
```js
210+
import rollIn from 'lib/rollIn'
211+
```
212+
### `rollOut`
213+
```js
214+
import rollOut from 'lib/rollOut'
215+
```
216+
### `rotateIn`
217+
```js
218+
import rotateIn from 'lib/rotateIn'
219+
```
220+
### `rotateInDownLeft`
221+
```js
222+
import rotateInDownLeft from 'lib/rotateInDownLeft'
223+
```
224+
### `rotateInDownRight`
225+
```js
226+
import rotateInDownRight from 'lib/rotateInDownRight'
227+
```
228+
### `rotateInUpLeft`
229+
```js
230+
import rotateInUpLeft from 'lib/rotateInUpLeft'
231+
```
232+
### `rotateInUpRight`
233+
```js
234+
import rotateInUpRight from 'lib/rotateInUpRight'
235+
```
236+
### `rotateOut`
237+
```js
238+
import rotateOut from 'lib/rotateOut'
239+
```
240+
### `rotateOutDownLeft`
241+
```js
242+
import rotateOutDownLeft from 'lib/rotateOutDownLeft'
243+
```
244+
### `rotateOutDownRight`
245+
```js
246+
import rotateOutDownRight from 'lib/rotateOutDownRight'
247+
```
248+
### `rotateOutUpLeft`
249+
```js
250+
import rotateOutUpLeft from 'lib/rotateOutUpLeft'
251+
```
252+
### `rotateOutUpRight`
253+
```js
254+
import rotateOutUpRight from 'lib/rotateOutUpRight'
255+
```
256+
### `rubberBand`
257+
```js
258+
import rubberBand from 'lib/rubberBand'
259+
```
260+
### `shake`
261+
```js
262+
import shake from 'lib/shake'
263+
```
264+
### `slideInDown`
265+
```js
266+
import slideInDown from 'lib/slideInDown'
267+
```
268+
### `slideInLeft`
269+
```js
270+
import slideInLeft from 'lib/slideInLeft'
271+
```
272+
### `slideInRight`
273+
```js
274+
import slideInRight from 'lib/slideInRight'
275+
```
276+
### `slideInUp`
277+
```js
278+
import slideInUp from 'lib/slideInUp'
279+
```
280+
### `slideOutDown`
281+
```js
282+
import slideOutDown from 'lib/slideOutDown'
283+
```
284+
### `slideOutLeft`
285+
```js
286+
import slideOutLeft from 'lib/slideOutLeft'
287+
```
288+
### `slideOutRight`
289+
```js
290+
import slideOutRight from 'lib/slideOutRight'
291+
```
292+
### `slideOutUp`
293+
```js
294+
import slideOutUp from 'lib/slideOutUp'
295+
```
296+
### `swing`
297+
```js
298+
import swing from 'lib/swing'
299+
```
300+
### `tada`
301+
```js
302+
import tada from 'lib/tada'
303+
```
304+
### `wobble`
305+
```js
306+
import wobble from 'lib/wobble'
307+
```
308+
### `zoomIn`
309+
```js
310+
import zoomIn from 'lib/zoomIn'
311+
```
312+
### `zoomInDown`
313+
```js
314+
import zoomInDown from 'lib/zoomInDown'
315+
```
316+
### `zoomInLeft`
317+
```js
318+
import zoomInLeft from 'lib/zoomInLeft'
319+
```
320+
### `zoomInRight`
321+
```js
322+
import zoomInRight from 'lib/zoomInRight'
323+
```
324+
### `zoomInUp`
325+
```js
326+
import zoomInUp from 'lib/zoomInUp'
327+
```
328+
### `zoomOut`
329+
```js
330+
import zoomOut from 'lib/zoomOut'
331+
```
332+
### `zoomOutDown`
333+
```js
334+
import zoomOutDown from 'lib/zoomOutDown'
335+
```
336+
### `zoomOutLeft`
337+
```js
338+
import zoomOutLeft from 'lib/zoomOutLeft'
339+
```
340+
### `zoomOutRight`
341+
```js
342+
import zoomOutRight from 'lib/zoomOutRight'
343+
```
344+
### `zoomOutUp`
345+
```js
346+
import zoomOutUp from 'lib/zoomOutUp'
347+
```

demo/app.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ animations.tadaFlip = merge(animations.tada, animations.flip);
4040
animations.jelloFadeDown = merge(animations.fadeInDown, animations.jello);
4141
animations.flashSwing = merge(animations.jello, animations.bounce);
4242
animations.zoomWobble = merge(animations.wobble, animations.zoomOut);
43+
animations.flashHinge = merge(animations.hinge, animations.flash);
4344

4445
const animationNames = [];
4546

0 commit comments

Comments
 (0)