[Client] Add some animations 🎨

This commit is contained in:
syuilo
2018-12-16 11:32:20 +09:00
parent a70070ac7d
commit d18ee12d2f
7 changed files with 67 additions and 40 deletions

View File

@@ -10,3 +10,19 @@
opacity: 0;
transform: scaleY(0);
}
.entranceFromTop {
animation-duration: 0.5s;
animation-name: entranceFromTop;
}
@keyframes entranceFromTop {
from {
opacity: 0;
transform: translateY(-64px);
}
to {
opacity: 1;
transform: translateY(0);
}
}