Skip to main content
Create new
Introduction
Reactivity
Props
Logic
Events
Bindings
Lifecycle
Stores
Motion
Transitions
Animations
Easing
SVG
Actions
Classes
Component composition
Context API
Special elements
Module context
Debugging
7GUIs
Miscellaneous
App.svelte
Chapter.svelte
Story.svelte
helpers.js
<script>
import Story from "./Story.svelte";
import Chapter from './Chapter.svelte';

import { percent } from './helpers.js';

import {get} from 'svelte/store';
let index;
let id
</script>


<mark>
<b>{index ?? '?'} - {id ?? '???'}</b>
</mark>

<main>
<Story bind:index bind:id>
<Chapter id="intro" --color="orangered">
<h1>📜 Svelte Storyscrolling</h1>
<p>There aren't really great libraries for this...</p>
</Chapter>
<Chapter id="middle" --color="steelblue">
<h1>😀 But guess what?</h1>
<p>I made this example based on <a href="https://svelte.dev/repl/3d3736e634c9404ea8ec2ef7b87e2053?version=3.42.4">a lovely REPL</a>.</p>
</Chapter>
<Chapter id="bindings" --color="mediumvioletred">
<h1>⚡ Active State</h1>
<p>You can track the active node's index and id...</p>
</Chapter>
<div class="spacer">
<h1>✋ Query Parameter</h1>
<p>This spacer is excluded since it's not queried...</p>
</div>
<Chapter id="transitions" --color="rebeccapurple" let:visible let:intro let:outro>
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */