From f63d94e0e64cd6768d4bfbbbf5c2922a821e29cb Mon Sep 17 00:00:00 2001 From: Tan Li Hau Date: Sun, 4 Oct 2020 19:52:56 +0800 Subject: [PATCH] docs: add missing `easing` option to `fade` (#5495) --- site/content/docs/03-run-time.md | 1 + 1 file changed, 1 insertion(+) diff --git a/site/content/docs/03-run-time.md b/site/content/docs/03-run-time.md index 42a99bea70..3b6df3071d 100644 --- a/site/content/docs/03-run-time.md +++ b/site/content/docs/03-run-time.md @@ -547,6 +547,7 @@ Animates the opacity of an element from 0 to the current opacity for `in` transi * `delay` (`number`, default 0) — milliseconds before starting * `duration` (`number`, default 400) — milliseconds the transition lasts +* `easing` (`function`, default `linear`) — an [easing function](docs#svelte_easing) You can see the `fade` transition in action in the [transition tutorial](tutorial/transition).