Say I have an out:
transition on an element in a SvelteKit route "A" and another in:
transition on some other element in route "B". Wenn navigating from page A to B, the transition of A has to finish before the elements of page B are shown.
Is there a way to have the elements of page A and B overlap during their transitions?
Page A
<script>
import { fly } from "svelte/transition";
</script>
<header out:fly={{ y: 100 }}>
...
Page B
...
<header in:fly={{ y: 100 }}>
...
File structure
project
└ src
└ routes
├ route-a.svelte
└ route-b.svelte
As I see in Svelte 3.48.0 + SvelteKit 1.0.0-next.350, the problem is not "transition of A has to finish before the elements of page B are shown", because SvelteKit starts "Page A" and "Page B" transitions after the "Page B" is loaded. You can see it if you add (uncomment) a delay to the
src/routes/b.js
endpoint in my example below.The problem is with the fly transition and CSS — "Page A" occupies a space until "Page A" transition is finished. You can solve this by this workaround (the one used in my example below) or by using another transition (
slide
, for example).Worked example with fly transition overlapping
src/routes/__layout.svelte:
src/routes/a.svelte:
src/routes/b.svelte:
src/routes/b.js: