File size: 435 Bytes
811126d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
@keyframes reveal {
0% {
transform: scale(0);
opacity: 0;
}
60% {
transform: scale(1.2);
}
100% {
transform: scale(1);
opacity: 1;
}
}
.animate-reveal {
animation: reveal 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes bg-transition {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animate-bg-transition {
animation: bg-transition 2s ease-in-out forwards;
}
|