mirror of
https://github.com/danbulant/design
synced 2026-05-24 12:23:57 +00:00
add page transitions
This commit is contained in:
parent
763a3ca622
commit
a3ca8768eb
4 changed files with 141 additions and 6 deletions
13
src/lib/components/pageTransition.svelte
Normal file
13
src/lib/components/pageTransition.svelte
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
<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 }}
|
||||||
|
>
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
{/key}
|
||||||
111
src/routes/__error.svelte
Normal file
111
src/routes/__error.svelte
Normal file
|
|
@ -0,0 +1,111 @@
|
||||||
|
<script context="module">
|
||||||
|
/** @type {import('@sveltejs/kit').Load} */
|
||||||
|
export async function load({ error, status }) {
|
||||||
|
let response;
|
||||||
|
try {
|
||||||
|
response = await fetch("/api/posts.json");
|
||||||
|
} catch(e) {}
|
||||||
|
return {
|
||||||
|
props: {
|
||||||
|
status,
|
||||||
|
error,
|
||||||
|
posts: response && response.ok && (await response.json())
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Button from "$lib/components/button.svelte";
|
||||||
|
import HeroPost from "$lib/components/heroPost.svelte";
|
||||||
|
import Post from "$lib/components/post.svelte";
|
||||||
|
|
||||||
|
export let status;
|
||||||
|
export let error;
|
||||||
|
export let posts;
|
||||||
|
let currentHover;
|
||||||
|
|
||||||
|
console.error(error);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h1 class="text-center">
|
||||||
|
{#if status == 404}
|
||||||
|
404 - Page Not Found
|
||||||
|
{:else}
|
||||||
|
{status} - {error.message}
|
||||||
|
{/if}
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<!-- HTML Entity encoded email -->
|
||||||
|
<p class="text-center">I'm sorry for that. If this is a repeated problem, try contacting me (danbulant@danbulant.eu)</p>
|
||||||
|
|
||||||
|
<div class="flex justify-center">
|
||||||
|
<Button href="/">Go to my home page</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{#if posts && posts.length > 0}
|
||||||
|
<div class="my-4 separator text-big">OR</div>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<h2 class="text-center">
|
||||||
|
Read one of the blog posts
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<HeroPost {...posts[0]} />
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
{#each posts.slice(1, 6) as post (post.title)}
|
||||||
|
<Post {...post} bind:currentHover />
|
||||||
|
{/each}
|
||||||
|
</main>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.flex {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.justify-center {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.text-center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.text-big {
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
.my-4 {
|
||||||
|
margin-top: 1rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
main {
|
||||||
|
max-width: 700px;
|
||||||
|
margin: auto;
|
||||||
|
padding: 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.separator {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.separator::before,
|
||||||
|
.separator::after {
|
||||||
|
content: "";
|
||||||
|
flex: 1;
|
||||||
|
max-width: 100px;
|
||||||
|
border-bottom: 1px solid #000;
|
||||||
|
}
|
||||||
|
:global(.dark .separator::before, .dark .separator::after) {
|
||||||
|
border-bottom-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.separator:not(:empty)::before {
|
||||||
|
margin-right: 0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.separator:not(:empty)::after {
|
||||||
|
margin-left: 0.25em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
17
src/routes/__layout.svelte
Normal file
17
src/routes/__layout.svelte
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
<script context="module">
|
||||||
|
export const load = async ({ url }) => ({ props: { url } });
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Navbar from "$lib/components/navbar.svelte";
|
||||||
|
import PageTransition from "$lib/components/pageTransition.svelte";
|
||||||
|
export let url;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Navbar />
|
||||||
|
|
||||||
|
<div style="overflow-x: hidden;">
|
||||||
|
<PageTransition {url}>
|
||||||
|
<slot />
|
||||||
|
</PageTransition>
|
||||||
|
</div>
|
||||||
|
|
@ -1,11 +1,5 @@
|
||||||
<script>
|
|
||||||
import Navbar from "$lib/components/navbar.svelte";
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.2/dist/katex.min.css" integrity="sha384-MlJdn/WNKDGXveldHDdyRP1R4CTHr3FeuDNfhsLPYrq2t0UBkUdK2jyTnXPEK1NQ" crossorigin="anonymous">
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.2/dist/katex.min.css" integrity="sha384-MlJdn/WNKDGXveldHDdyRP1R4CTHr3FeuDNfhsLPYrq2t0UBkUdK2jyTnXPEK1NQ" crossorigin="anonymous">
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<Navbar/>
|
|
||||||
|
|
||||||
<slot />
|
<slot />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue