unch-cms/public/assets/vendor/animate.css/source/bouncing_exits/bounceOutUp.css

21 lines
276 B
CSS
Raw Normal View History

2022-09-02 11:25:50 +07:00
@keyframes bounceOutUp {
20% {
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
animation-name: bounceOutUp;
}