mirror of https://github.com/sveltejs/svelte
parent
0a230d1c9d
commit
64fa48e699
@ -0,0 +1,28 @@
|
|||||||
|
export default {
|
||||||
|
skipIntroByDefault: true,
|
||||||
|
nestedTransitions: true,
|
||||||
|
|
||||||
|
data: {
|
||||||
|
x: false,
|
||||||
|
things: ['a']
|
||||||
|
},
|
||||||
|
|
||||||
|
test(assert, component, target, window, raf) {
|
||||||
|
component.set({ x: true });
|
||||||
|
|
||||||
|
const div = target.querySelector('div');
|
||||||
|
assert.equal(div.foo, 0);
|
||||||
|
|
||||||
|
raf.tick(100);
|
||||||
|
assert.equal(div.foo, 1);
|
||||||
|
|
||||||
|
component.set({ x: false });
|
||||||
|
assert.htmlEqual(target.innerHTML, '<div></div>');
|
||||||
|
|
||||||
|
raf.tick(150);
|
||||||
|
assert.equal(div.foo, 0.5);
|
||||||
|
|
||||||
|
raf.tick(200);
|
||||||
|
assert.htmlEqual(target.innerHTML, '');
|
||||||
|
},
|
||||||
|
};
|
@ -0,0 +1,20 @@
|
|||||||
|
{#if x}
|
||||||
|
{#each things as thing (thing)}
|
||||||
|
<div transition:foo></div>
|
||||||
|
{/each}
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo(node, params) {
|
||||||
|
return {
|
||||||
|
duration: 100,
|
||||||
|
tick: t => {
|
||||||
|
node.foo = t;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,28 @@
|
|||||||
|
export default {
|
||||||
|
skipIntroByDefault: true,
|
||||||
|
nestedTransitions: true,
|
||||||
|
|
||||||
|
data: {
|
||||||
|
x: false,
|
||||||
|
things: ['a']
|
||||||
|
},
|
||||||
|
|
||||||
|
test(assert, component, target, window, raf) {
|
||||||
|
component.set({ x: true });
|
||||||
|
|
||||||
|
const div = target.querySelector('div');
|
||||||
|
assert.equal(div.foo, 0);
|
||||||
|
|
||||||
|
raf.tick(100);
|
||||||
|
assert.equal(div.foo, 1);
|
||||||
|
|
||||||
|
component.set({ x: false });
|
||||||
|
assert.htmlEqual(target.innerHTML, '<div></div>');
|
||||||
|
|
||||||
|
raf.tick(150);
|
||||||
|
assert.equal(div.foo, 0.5);
|
||||||
|
|
||||||
|
raf.tick(200);
|
||||||
|
assert.htmlEqual(target.innerHTML, '');
|
||||||
|
},
|
||||||
|
};
|
@ -0,0 +1,20 @@
|
|||||||
|
{#if x}
|
||||||
|
{#each things as thing}
|
||||||
|
<div transition:foo></div>
|
||||||
|
{/each}
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo(node, params) {
|
||||||
|
return {
|
||||||
|
duration: 100,
|
||||||
|
tick: t => {
|
||||||
|
node.foo = t;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in new issue