You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
279 B
21 lines
279 B
3 months ago
|
@keyframes backOutDown {
|
||
|
0% {
|
||
|
transform: scale(1);
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
20% {
|
||
|
transform: translateY(0px) scale(0.7);
|
||
|
opacity: 0.7;
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
transform: translateY(700px) scale(0.7);
|
||
|
opacity: 0.7;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.backOutDown {
|
||
|
animation-name: backOutDown;
|
||
|
}
|