mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
15 lines
224 B
Svelte
15 lines
224 B
Svelte
<script>
|
|
import { fade } from 'svelte/transition';
|
|
let visible = true;
|
|
</script>
|
|
|
|
<label>
|
|
<input type="checkbox" bind:checked={visible}>
|
|
visible
|
|
</label>
|
|
|
|
{#if visible}
|
|
<p transition:fade>
|
|
Fades in and out
|
|
</p>
|
|
{/if} |