You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.bounce-enter-active {
|
|
animation: bounce-in 0.6s ease-out;
|
|
}
|
|
|
|
@keyframes bounce-in {
|
|
0% {
|
|
transform: translateY(0);
|
|
}
|
|
50% {
|
|
transform: translateY(-10%);
|
|
}
|
|
100% {
|
|
transform: translateY(0);
|
|
}
|
|
}
|