mirror of https://github.com/sveltejs/svelte
commit
acf889d8b5
@ -0,0 +1,11 @@
|
|||||||
|
export default {
|
||||||
|
test ( assert, component, target, window, raf ) {
|
||||||
|
const div = target.querySelector( 'div' );
|
||||||
|
assert.equal( div.foo, 0 );
|
||||||
|
|
||||||
|
raf.tick(50);
|
||||||
|
assert.equal( div.foo, 0.5 );
|
||||||
|
|
||||||
|
component.destroy();
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,16 @@
|
|||||||
|
<div transition:foo></div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo: function ( node, params ) {
|
||||||
|
return {
|
||||||
|
duration: 100,
|
||||||
|
tick: t => {
|
||||||
|
node.foo = t;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in new issue