mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-24 12:35:31 +00:00
14 lines
258 B
Svelte
14 lines
258 B
Svelte
<script>
|
|
import { fly } from 'svelte/transition';
|
|
export let url = '';
|
|
</script>
|
|
|
|
{#key url}
|
|
<div
|
|
in:fly={{ x: -5, duration: 500, delay: 500 }}
|
|
out:fly={{ x: 5, duration: 500 }}
|
|
class="absolute h-full w-full bg-inherit"
|
|
>
|
|
<slot />
|
|
</div>
|
|
{/key}
|