You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/site/content/tutorial/10-transitions/05-custom-js-transitions/app-a/App.svelte

22 lines
304 B

<script>
let visible = false;
function typewriter(node, { speed = 50 }) {
// implementation goes here
return {
};
}
</script>
<label>
<input type="checkbox" bind:checked={visible}>
visible
</label>
{#if visible}
<p in:typewriter>
The quick brown fox jumps over the lazy dog
</p>
{/if}