0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/site/content/examples/transitions-fade/App.html
2018-12-23 19:05:30 -05:00

11 lines
199 B
HTML

<script>
import { fade } from 'svelte/transition';
export let visible;
</script>
<input type=checkbox bind:checked={visible}> visible
{#if visible}
<p transition:fade>fades in and out</p>
{/if}