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/dynamic-element-transition/main.svelte

18 lines
250 B

<script>
export let tag = "h1";
export let visible;
function foo() {
return {
duration: 100,
css: t => {
return `opacity: ${t}`;
}
};
}
</script>
{#if visible}
<svelte:element this={tag} transition:foo></svelte:element>
{/if}