107 lines
1.8 KiB
TypeScript
107 lines
1.8 KiB
TypeScript
|
|
export type generalAnimations =
|
|
| 'bounce'
|
|
| 'flash'
|
|
| 'flip'
|
|
| 'headShake'
|
|
| 'heartBeat'
|
|
| 'hinge'
|
|
| 'jello'
|
|
| 'pulse'
|
|
| 'rubberBand'
|
|
| 'shake'
|
|
| 'shakeX'
|
|
| 'shakeY'
|
|
| 'swing'
|
|
| 'tada'
|
|
| 'wobble'
|
|
;
|
|
|
|
export type inAnimations =
|
|
| 'backInDown'
|
|
| 'backInLeft'
|
|
| 'backInRight'
|
|
| 'backInUp'
|
|
| 'bounceIn'
|
|
| 'bounceInDown'
|
|
| 'bounceInLeft'
|
|
| 'bounceInRight'
|
|
| 'bounceInUp'
|
|
| 'fadeIn'
|
|
| 'fadeInBottomLeft'
|
|
| 'fadeInBottomRight'
|
|
| 'fadeInDown'
|
|
| 'fadeInDownBig'
|
|
| 'fadeInLeft'
|
|
| 'fadeInLeftBig'
|
|
| 'fadeInRight'
|
|
| 'fadeInRightBig'
|
|
| 'fadeInTopLeft'
|
|
| 'fadeInTopRight'
|
|
| 'fadeInUp'
|
|
| 'fadeInUpBig'
|
|
| 'flipInX'
|
|
| 'flipInY'
|
|
| 'jackInTheBox'
|
|
| 'lightSpeedInLeft'
|
|
| 'lightSpeedInRight'
|
|
| 'rollIn'
|
|
| 'rotateIn'
|
|
| 'rotateInDownLeft'
|
|
| 'rotateInDownRight'
|
|
| 'rotateInUpLeft'
|
|
| 'rotateInUpRight'
|
|
| 'slideInDown'
|
|
| 'slideInLeft'
|
|
| 'slideInRight'
|
|
| 'slideInUp'
|
|
| 'zoomIn'
|
|
| 'zoomInDown'
|
|
| 'zoomInLeft'
|
|
| 'zoomInRight'
|
|
| 'zoomInUp'
|
|
;
|
|
|
|
export type outAnimations =
|
|
| 'backOutDown'
|
|
| 'backOutLeft'
|
|
| 'backOutRight'
|
|
| 'backOutUp'
|
|
| 'bounceOut'
|
|
| 'bounceOutDown'
|
|
| 'bounceOutLeft'
|
|
| 'bounceOutRight'
|
|
| 'bounceOutUp'
|
|
| 'fadeOut'
|
|
| 'fadeOutBottomLeft'
|
|
| 'fadeOutBottomRight'
|
|
| 'fadeOutDown'
|
|
| 'fadeOutDownBig'
|
|
| 'fadeOutLeft'
|
|
| 'fadeOutLeftBig'
|
|
| 'fadeOutRight'
|
|
| 'fadeOutRightBig'
|
|
| 'fadeOutTopLeft'
|
|
| 'fadeOutTopRight'
|
|
| 'fadeOutUp'
|
|
| 'fadeOutUpBig'
|
|
| 'flipOutX'
|
|
| 'flipOutY'
|
|
| 'lightSpeedOutLeft'
|
|
| 'lightSpeedOutRight'
|
|
| 'rollOut'
|
|
| 'rotateOut'
|
|
| 'rotateOutDownLeft'
|
|
| 'rotateOutDownRight'
|
|
| 'rotateOutUpLeft'
|
|
| 'rotateOutUpRight'
|
|
| 'slideOutDown'
|
|
| 'slideOutLeft'
|
|
| 'slideOutRight'
|
|
| 'slideOutUp'
|
|
| 'zoomOut'
|
|
| 'zoomOutDown'
|
|
| 'zoomOutLeft'
|
|
| 'zoomOutRight'
|
|
| 'zoomOutUp'
|
|
;
|