23 lines
260 B
JavaScript
23 lines
260 B
JavaScript
|
const fadeAnimIn = [
|
||
|
'show',
|
||
|
'animated',
|
||
|
'tdFadeIn',
|
||
|
]
|
||
|
|
||
|
const fadeAnimOut = [
|
||
|
'animated',
|
||
|
'tdFadeOut',
|
||
|
]
|
||
|
|
||
|
|
||
|
const bounceAnimIn = [
|
||
|
'show',
|
||
|
'animated',
|
||
|
'tdExpandInBounce',
|
||
|
]
|
||
|
|
||
|
const bounceAnimOut = [
|
||
|
'animated',
|
||
|
'tdShrinkOutBounce',
|
||
|
]
|