Lachenzelg/assets/css/transition.css

12 lines
220 B
CSS
Raw Permalink Normal View History

2025-01-07 03:02:25 +01:00
/* CSS für die Seitenübergänge */
.page-transition-enter, .page-transition-exit {
transition: all 1s ease-out;
}
.page-transition-enter {
opacity: 0;
}
.page-transition-exit {
opacity: 1;
}