Skip to content

Commit ab524ff

Browse files
committed
docs: <svelte:html> tutorial
Related to sveltejs/svelte#14397
1 parent 2ed7da6 commit ab524ff

File tree

13 files changed

+30
-0
lines changed

13 files changed

+30
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script>
2+
let darkmode = $state(false);
3+
</script>
4+
5+
<svelte:html />
6+
7+
<button onclick={() => darkmode = !darkmode}>toggle dark mode</button>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script>
2+
let darkmode = $state(false);
3+
</script>
4+
5+
<svelte:html class={darkmode ? 'dark' : 'light'} />
6+
7+
<button onclick={() => darkmode = !darkmode}>toggle dark mode</button>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: <svelte:html>
3+
---
4+
5+
The `<svelte:html>` element allows you to listen to events _and_ set attributes on the `<html>`. This is useful to for example set the `lang` tag dynamically, or to update `class`es that influence the whole page.
6+
7+
Add a conditional `class` attribute to the `<svelte:html>` tag...
8+
9+
```svelte
10+
<!--- file: App.svelte --->
11+
<svelte:html
12+
+++class={darkmode ? 'dark' : 'light'}+++
13+
/>
14+
```
15+
16+
...and click the button to toggle the mode.

0 commit comments

Comments
 (0)