mirror of https://github.com/sveltejs/svelte
Merge pull request #970 from sveltejs/gh-962-again
don't transform bidi transitions twicepull/948/merge
commit
e0d00d0737
@ -0,0 +1,21 @@
|
||||
export default {
|
||||
data: {
|
||||
duration: 200
|
||||
},
|
||||
|
||||
test(assert, component, target, window, raf) {
|
||||
component.set({ visible: true });
|
||||
const div = target.querySelector('div');
|
||||
assert.equal(div.foo, 0);
|
||||
|
||||
raf.tick(50);
|
||||
assert.equal(div.foo, 100);
|
||||
|
||||
raf.tick(100);
|
||||
assert.equal(div.foo, 200);
|
||||
|
||||
raf.tick(101);
|
||||
|
||||
component.destroy();
|
||||
},
|
||||
};
|
@ -0,0 +1,18 @@
|
||||
{{#if visible}}
|
||||
<div transition:foo='{k: duration}'>fades in</div>
|
||||
{{/if}}
|
||||
|
||||
<script>
|
||||
export default {
|
||||
transitions: {
|
||||
foo(node, params) {
|
||||
return {
|
||||
duration: 100,
|
||||
tick: t => {
|
||||
node.foo = t * params.k;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue