mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
3.7 KiB
119 lines
3.7 KiB
4 weeks ago
|
---
|
||
|
title: animate:
|
||
|
---
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
An animation is triggered when the contents of a [keyed each block](each#Keyed-each-blocks) are re-ordered. Animations do not run when an element is added or removed, only when the index of an existing data item within the each block changes. Animate directives must be on an element that is an _immediate_ child of a keyed each block.
|
||
|
|
||
|
Animations can be used with Svelte's [built-in animation functions](svelte-animate) or [custom animation functions](#Custom-animation-functions).
|
||
|
|
||
|
```svelte
|
||
|
<!-- When `list` is reordered the animation will run-->
|
||
|
{#each list as item, index (item)}
|
||
|
<li animate:flip>{item}</li>
|
||
|
{/each}
|
||
|
```
|
||
|
|
||
|
## Animation Parameters
|
||
|
|
||
|
As with actions and transitions, animations can have parameters.
|
||
|
|
||
|
(The double `{{curlies}}` aren't a special syntax; this is an object literal inside an expression tag.)
|
||
|
|
||
|
```svelte
|
||
|
{#each list as item, index (item)}
|
||
|
<li animate:flip={{ delay: 500 }}>{item}</li>
|
||
|
{/each}
|
||
|
```
|
||
|
|
||
|
## Custom animation functions
|
||
|
|
||
|
```js
|
||
|
/// copy: false
|
||
|
// @noErrors
|
||
|
animation = (node: HTMLElement, { from: DOMRect, to: DOMRect } , params: any) => {
|
||
|
delay?: number,
|
||
|
duration?: number,
|
||
|
easing?: (t: number) => number,
|
||
|
css?: (t: number, u: number) => string,
|
||
|
tick?: (t: number, u: number) => void
|
||
|
}
|
||
|
```
|
||
|
|
||
|
Animations can use custom functions that provide the `node`, an `animation` object and any `parameters` as arguments. The `animation` parameter is an object containing `from` and `to` properties each containing a [DOMRect](https://developer.mozilla.org/en-US/docs/Web/API/DOMRect#Properties) describing the geometry of the element in its `start` and `end` positions. The `from` property is the DOMRect of the element in its starting position, and the `to` property is the DOMRect of the element in its final position after the list has been reordered and the DOM updated.
|
||
|
|
||
|
If the returned object has a `css` method, Svelte will create a [web animation](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API) that plays on the element.
|
||
|
|
||
|
The `t` argument passed to `css` is a value that goes from `0` and `1` after the `easing` function has been applied. The `u` argument is equal to `1 - t`.
|
||
|
|
||
|
The function is called repeatedly _before_ the animation begins, with different `t` and `u` arguments.
|
||
|
|
||
|
<!-- TODO: Types -->
|
||
|
|
||
|
```svelte
|
||
|
<!--- file: App.svelte --->
|
||
|
<script>
|
||
|
import { cubicOut } from 'svelte/easing';
|
||
|
|
||
|
/**
|
||
|
* @param {HTMLElement} node
|
||
|
* @param {{ from: DOMRect; to: DOMRect }} states
|
||
|
* @param {any} params
|
||
|
*/
|
||
|
function whizz(node, { from, to }, params) {
|
||
|
const dx = from.left - to.left;
|
||
|
const dy = from.top - to.top;
|
||
|
|
||
|
const d = Math.sqrt(dx * dx + dy * dy);
|
||
|
|
||
|
return {
|
||
|
delay: 0,
|
||
|
duration: Math.sqrt(d) * 120,
|
||
|
easing: cubicOut,
|
||
|
css: (t, u) => `transform: translate(${u * dx}px, ${u * dy}px) rotate(${t * 360}deg);`
|
||
|
};
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
{#each list as item, index (item)}
|
||
|
<div animate:whizz>{item}</div>
|
||
|
{/each}
|
||
|
```
|
||
|
|
||
|
A custom animation function can also return a `tick` function, which is called _during_ the animation with the same `t` and `u` arguments.
|
||
|
|
||
|
> [!NOTE] If it's possible to use `css` instead of `tick`, do so — web animations can run off the main thread, preventing jank on slower devices.
|
||
|
|
||
|
```svelte
|
||
|
<!--- file: App.svelte --->
|
||
|
<script>
|
||
|
import { cubicOut } from 'svelte/easing';
|
||
|
|
||
|
/**
|
||
|
* @param {HTMLElement} node
|
||
|
* @param {{ from: DOMRect; to: DOMRect }} states
|
||
|
* @param {any} params
|
||
|
*/
|
||
|
function whizz(node, { from, to }, params) {
|
||
|
const dx = from.left - to.left;
|
||
|
const dy = from.top - to.top;
|
||
|
|
||
|
const d = Math.sqrt(dx * dx + dy * dy);
|
||
|
|
||
|
return {
|
||
|
delay: 0,
|
||
|
duration: Math.sqrt(d) * 120,
|
||
|
easing: cubicOut,
|
||
|
tick: (t, u) => Object.assign(node.style, { color: t > 0.5 ? 'Pink' : 'Blue' })
|
||
|
};
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
{#each list as item, index (item)}
|
||
|
<div animate:whizz>{item}</div>
|
||
|
{/each}
|
||
|
```
|
||
|
|