test / notme /src /app /styles /animations.css
dcrey7's picture
Upload 522 files
811126d verified
@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;
}