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.
16 lines
218 B
CSS
16 lines
218 B
CSS
3 years ago
|
.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);
|
||
|
}
|
||
|
}
|