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/test/runtime/samples/component-transition/main.svelte

14 lines
317 B

<script>
import { slide } from 'svelte/transition';
let tag = 'div';
function toggle() {
tag = (tag) ? null : 'div';
}
</script>
<button id="button" on:click={toggle}>toggle</button> TAG={tag}
<div id="container">
<svelte:element this={tag} transition:slide={{duration:500}}>CONTENT</svelte:element>
</div>