Skip to main content
Svelte 基础
介绍
响应式
属性
逻辑
事件
绑定
类和样式
Actions
过渡动画
Svelte 进阶
高级响应性
复用内容
Motion
高级绑定
高级过渡效果
Context API
特殊元素
<script module>
后续步骤
SvelteKit 基础
介绍
路由
加载数据
请求头和 Cookie
共享模块
表单
API 路由
$app/state
错误和重定向
SvelteKit 进阶
钩子函数
页面选项
链接选项
高级路由
高级加载
环境变量
结论

Svelte 过渡引擎的一个特别强大的功能是能够_延迟_过渡,这样它们就可以在多个元素之间进行协调。

看看这一对待办事项列表,当切换一个待办事项时,它会被发送到对面的列表。在现实世界中,物体并不是这样运作的 — 它们不会在一个地方消失然后在另一个地方重新出现,而是会经过一系列中间位置移动。使用动效可以很好地帮助用户理解你的应用中发生了什么。

我们可以使用 transition.js 中的 crossfade 函数来实现这个效果,它创建了一对称为 sendreceive 的过渡。当一个元素被”发送”时,它会寻找一个正在被”接收”的对应元素,并生成一个过渡效果,将该元素转换到其对应元素的位置并淡出。当一个元素被”接收”时,则发生相反的过程。如果没有对应的元素,则使用 fallback 过渡。

打开 TodoList.svelte。首先,从 transition.js 中导入 sendreceive 过渡:

TodoList
<script>
	import { send, receive } from './transition.js';

	let { todos, remove } = $props();
</script>
<script lang="ts">
	import { send, receive } from './transition.js';

	let { todos, remove } = $props();
</script>

然后,将它们添加到 <li> 元素中,使用 todo.id 属性作为匹配元素的键:

TodoList
<li
	class={{ done: todo.done }}
	in:receive={{ key: todo.id }}
	out:send={{ key: todo.id }}
>

现在,当你切换项目时,它们会平滑地移动到新位置。未过渡的项目仍然会尴尬地跳动 — 我们将在下一个练习中修复这个问题。

在 GitHub 编辑此页面

上一页 下一页
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<script>
	import TodoList from './TodoList.svelte';
 
	const todos = $state([
		{ done: false, description: 'write some docs' },
		{ done: false, description: 'start writing blog post' },
		{ done: true, description: 'buy some milk' },
		{ done: false, description: 'mow the lawn' },
		{ done: false, description: 'feed the turtle' },
		{ done: false, description: 'fix some bugs' }
	]);
 
	function remove(todo) {
		const index = todos.indexOf(todo);
		todos.splice(index, 1);
	}
</script>
 
<div class="board">
	<input
		placeholder="what needs to be done?"
		onkeydown={(e) => {
			if (e.key !== 'Enter') return;
 
			todos.push({
				done: false,
				description: e.currentTarget.value
			});
 
			e.currentTarget.value = '';
		}}
	/>
 
	<div class="todo">
		<h2>todo</h2>
		<TodoList todos={todos.filter((t) => !t.done)} {remove} />
	</div>
 
	<div class="done">
		<h2>done</h2>
		<TodoList todos={todos.filter((t) => t.done)} {remove} />
	</div>
</div>
 
<style>
	.board {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 1em;
		max-width: 36em;
		margin: 0 auto;
	}
 
	.board > input {
		font-size: 1.4em;
		grid-column: 1/3;
		padding: 0.5em;
		margin: 0 0 1rem 0;
	}
 
	h2 {
		font-size: 2em;
		font-weight: 200;
	}
</style>