important animation
parent
95536ac872
commit
0950a2f1df
@ -0,0 +1,15 @@
|
|||||||
|
.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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue