你现在已经完成了 Svelte 教程,并准备好开始构建了。
本教程的接下来的两部分将重点介绍 SvelteKit,这是一个功能齐全的框架,用于创建各种规模的应用程序。
如果你正在遭受信息过载,并且还没有准备好学习 SvelteKit 教程,别担心!你可以在不学习所有 SvelteKit 的情况下使用现有的 Svelte 知识。只需在你的终端中运行以下命令并按照提示操作...
npx sv create
...然后开始编辑 src/routes/+page.svelte
。当你准备好时,点击下面的链接继续你的旅程。
上一步 下一步
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
<script>
let characters = ['🥳', '🎉', '✨'];
let confetti = $state(new Array(100)
.fill()
.map((_, i) => {
return {
character:
characters[i % characters.length],
x: Math.random() * 100,
y: -20 - Math.random() * 100,
r: 0.1 + Math.random() * 1
};
})
.sort((a, b) => a.r - b.r));
$effect(() => {
let frame = requestAnimationFrame(function loop() {
frame = requestAnimationFrame(loop);
for (const confetto of confetti) {
confetto.y += 0.3 * confetto.r;
if (confetto.y > 120) confetto.y = -20;
}
});
return () => {
cancelAnimationFrame(frame);
}
});
</script>
{#each confetti as c}
<span
style:left="{c.x}%"
style:top="{c.y}%"
style:scale={c.r}
>
{c.character}
</span>
{/each}
<style>
span {
position: absolute;
font-size: 5vw;
user-select: none;
}
:global(body) {
overflow: hidden;
}
</style>