Updated animation to match fab

Cette révision appartient à :
Arnaud Vergnet 2020-04-18 16:58:07 +02:00
Parent 7f5ade5999
révision 8e7b213b4f

Voir le fichier

@ -57,9 +57,9 @@ class AnimatedBottomBar extends React.Component<Props, State> {
onHideChange = (shouldHide: boolean) => {
if (this.ref.current) {
if (shouldHide)
this.ref.current.fadeOutDown(600);
this.ref.current.bounceOutDown(1000);
else
this.ref.current.fadeInUp(500);
this.ref.current.bounceInUp(1000);
}
}