mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-26 03:35:19 +00:00
23 lines
547 B
SCSS
23 lines
547 B
SCSS
// Animation
|
|
|
|
@keyframes zoomOutLeft {
|
|
40% {
|
|
opacity: 1;
|
|
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
|
|
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
|
|
transform: scale(.1) translate3d(-2000px, 0, 0);
|
|
-webkit-transform-origin: left center;
|
|
transform-origin: left center;
|
|
}
|
|
}
|
|
|
|
.UppyAnimation-zoomOutLeft {
|
|
animation-name: zoomOutLeft;
|
|
animation-duration: 1s;
|
|
animation-fill-mode: both;
|
|
}
|