mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-16 09:08:31 +01:00
15 lines
203 B
CSS
15 lines
203 B
CSS
@keyframes fadeInDownBig {
|
|
from {
|
|
opacity: 0;
|
|
transform: translate3d(0, -2000px, 0);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.fadeInDownBig {
|
|
animation-name: fadeInDownBig;
|
|
}
|