diff options
| author | Fuwn <[email protected]> | 2026-05-08 07:50:58 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-05-08 07:50:58 +0000 |
| commit | 0ccf90d31c1db678d0555459bbd9ddb1f5e8a0e4 (patch) | |
| tree | 199c59a798afad9b99effdaf30f9311b3cdd7fbb | |
| parent | fix(scroll): route LandingHero scroll-down through Lenis (diff) | |
| download | due.moe-0ccf90d31c1db678d0555459bbd9ddb1f5e8a0e4.tar.xz due.moe-0ccf90d31c1db678d0555459bbd9ddb1f5e8a0e4.zip | |
style(transitions): lengthen page transition for smoother feel
Bump Root fly duration/delay from 100ms to 180ms so the built-in opacity fade is perceptible and the slide reads against Lenis-smoothed scroll.
| -rw-r--r-- | src/lib/Home/Root.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Home/Root.svelte b/src/lib/Home/Root.svelte index d0cf8898..32a86761 100644 --- a/src/lib/Home/Root.svelte +++ b/src/lib/Home/Root.svelte @@ -5,7 +5,7 @@ import { fly } from "svelte/transition"; export let data: { url: string }; export let way: number; -const animationDelay = 100; +const animationDelay = 180; </script> {#if $settings.displayDisableAnimations} |