fadeOutDownBig.css
TLDR
This file contains CSS code that defines a keyframe animation called fadeOutDownBig
and a CSS class called .fadeOutDownBig
.
Classes
.fadeOutDownBig
The .fadeOutDownBig
class is used to apply the fadeOutDownBig
animation to an element. When applied, the element gradually fades out and moves downward, disappearing from the view.
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
animation-name: fadeOutDownBig;
}