diff options
Diffstat (limited to 'src/lib/Root.svelte')
| -rw-r--r-- | src/lib/Root.svelte | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/lib/Root.svelte b/src/lib/Root.svelte new file mode 100644 index 00000000..d65a9832 --- /dev/null +++ b/src/lib/Root.svelte @@ -0,0 +1,26 @@ +<script lang="ts"> + import settings from '$stores/settings'; + import { fly } from 'svelte/transition'; + + export let data: any; + export let way: number; + + const animationDelay = 100; +</script> + +{#if $settings.displayDisableAnimations} + <slot /> +{:else} + {#key data.url} + <div + in:fly={{ + x: way, + duration: animationDelay, + delay: animationDelay + }} + out:fly={{ x: -way, duration: animationDelay }} + > + <slot /> + </div> + {/key} +{/if} |