The `svelte/transition` module exports seven functions: `fade`, `blur`, `fly`, `slide`, `scale`, `draw` and `crossfade`. They are for use with Svelte [`transitions`](/docs/element-directives#transition-fn).
Animates the x and y positions and the opacity of an element. `in` transitions animate from the provided values, passed as parameters to the element's default values. `out` transitions animate from the element's default values to the provided values.
`fly` accepts the following parameters:
-`delay` (`number`, default 0) — milliseconds before starting
-`duration` (`number`, default 400) — milliseconds the transition lasts
-`easing` (`function`, default `cubicOut`) — an [easing function](/docs/svelte-easing)
-`x` (`number | string`, default 0) - the x offset to animate out to and in from
-`y` (`number | string`, default 0) - the y offset to animate out to and in from
-`opacity` (`number`, default 0) - the opacity value to animate out to and in from
x and y use `px` by default but support css units, for example `x: '100vw'` or `y: '50%'`.
Animates the opacity and scale of an element. `in` transitions animate from an element's current (default) values to the provided values, passed as parameters. `out` transitions animate from the provided values to an element's default values.
`scale` accepts the following parameters:
-`delay` (`number`, default 0) — milliseconds before starting
-`duration` (`number`, default 400) — milliseconds the transition lasts
-`easing` (`function`, default `cubicOut`) — an [easing function](/docs/svelte-easing)
-`start` (`number`, default 0) - the scale value to animate out to and in from
-`opacity` (`number`, default 0) - the opacity value to animate out to and in from
Animates the stroke of an SVG element, like a snake in a tube. `in` transitions begin with the path invisible and draw the path to the screen over time. `out` transitions start in a visible state and gradually erase the path. `draw` only works with elements that have a `getTotalLength` method, like `<path>` and `<polyline>`.
`draw` accepts the following parameters:
-`delay` (`number`, default 0) — milliseconds before starting
-`speed` (`number`, default undefined) - the speed of the animation, see below.
-`easing` (`function`, default `cubicInOut`) — an [easing function](/docs/svelte-easing)
The `speed` parameter is a means of setting the duration of the transition relative to the path's length. It is a modifier that is applied to the length of the path: `duration = length / speed`. A path that is 1000 pixels with a speed of 1 will have a duration of `1000ms`, setting the speed to `0.5` will double that duration and setting it to `2` will halve it.
The `crossfade` function creates a pair of [transitions](/docs/element-directives#transition-fn) called `send` and `receive`. When an element is 'sent', it looks for a corresponding element being 'received', and generates a transition that transforms the element to its counterpart's position and fades it out. When an element is 'received', the reverse happens. If there is no counterpart, the `fallback` transition is used.
`crossfade` accepts the following parameters:
-`delay` (`number`, default 0) — milliseconds before starting
-`easing` (`function`, default `cubicOut`) — an [easing function](/docs/svelte-easing)
-`fallback` (`function`) — A fallback [transition](/docs/element-directives#transition-fn) to use for send when there is no matching element being received, and for receive when there is no element being sent.