mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 00:46:29 +01:00
f45e2b70fd
This also includes elements of RFCs 2 and 3
29 lines
382 B
HTML
29 lines
382 B
HTML
<script>
|
|
export let visible;
|
|
|
|
function foo(node) {
|
|
return {
|
|
duration: 200,
|
|
css: t => {
|
|
return `opacity: ${t}`;
|
|
}
|
|
};
|
|
}
|
|
|
|
function bar(node) {
|
|
return {
|
|
duration: 100,
|
|
css: t => {
|
|
return `left: ${t * 100}px`;
|
|
}
|
|
};
|
|
}
|
|
</script>
|
|
|
|
{#if visible}
|
|
<span class='outer' out:foo>
|
|
<span class='inner' out:bar>
|
|
double transition
|
|
</span>
|
|
</span>
|
|
{/if} |