mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
67 lines
No EOL
974 B
CSS
67 lines
No EOL
974 B
CSS
@-webkit-keyframes fadeOutDownBig {
|
|
0% {
|
|
opacity: 1;
|
|
-webkit-transform: translateY(0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
-webkit-transform: translateY(2000px);
|
|
}
|
|
}
|
|
|
|
@-moz-keyframes fadeOutDownBig {
|
|
0% {
|
|
opacity: 1;
|
|
-moz-transform: translateY(0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
-moz-transform: translateY(2000px);
|
|
}
|
|
}
|
|
|
|
@-ms-keyframes fadeOutDownBig {
|
|
0% {
|
|
opacity: 1;
|
|
-ms-transform: translateY(0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
-ms-transform: translateY(2000px);
|
|
}
|
|
}
|
|
|
|
@-o-keyframes fadeOutDownBig {
|
|
0% {
|
|
opacity: 1;
|
|
-o-transform: translateY(0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
-o-transform: translateY(2000px);
|
|
}
|
|
}
|
|
|
|
@keyframes fadeOutDownBig {
|
|
0% {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
transform: translateY(2000px);
|
|
}
|
|
}
|
|
|
|
.fadeOutDownBig {
|
|
-webkit-animation-name: fadeOutDownBig;
|
|
-moz-animation-name: fadeOutDownBig;
|
|
-ms-animation-name: fadeOutDownBig;
|
|
-o-animation-name: fadeOutDownBig;
|
|
animation-name: fadeOutDownBig;
|
|
} |