mirror of https://github.com/sveltejs/svelte
21 lines
424 B
21 lines
424 B
<script>
|
|
export let things;
|
|
|
|
function flip(node, animation, params) {
|
|
const dx = animation.from.left - animation.to.left;
|
|
const dy = animation.from.top - animation.to.top;
|
|
|
|
return {
|
|
delay: params.delay,
|
|
duration: 100,
|
|
tick: (t, u) => {
|
|
node.dx = u * dx;
|
|
node.dy = u * dy;
|
|
}
|
|
};
|
|
}
|
|
</script>
|
|
|
|
{#each things as thing, i (thing.id)}
|
|
<div animate:flip="{{delay: i * 10}}">{thing.name}</div>
|
|
{/each} |