react-toolbox/components/animations/zoom-out.scss

32 lines
454 B
SCSS

@import "../base";
.enter, .leave {
position: absolute;
}
.enterActive, .leaveActive {
transition-timing-function: $animation-curve-fast-out-slow-in;
transition-duration: 500ms;
transition: transform, opacity;
}
.enter {
opacity: 0;
transform: scale(1.25);
&.enterActive {
opacity: 1;
transform: scale(1);
}
}
.leave {
opacity: 1;
transform: scale(1);
&.leaveActive {
opacity: 0;
transform: scale(0.85);
}
}