This commit is contained in:
2020-04-26 11:37:38 +02:00
parent 89dbf93cfd
commit 7e1425c25e
4 changed files with 19 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
.page-enter-active {
animation: bounce-in .5s;
}
.page-leave-active {
animation: bounce-in .5s reverse;
}
@keyframes bounce-in {
0% {
transform: scale(0);
}
50% {
transform: scale(1.5);
}
100% {
transform: scale(1);
}
}