您可以使用特殊的 bind:this
指令来获取对组件中元素的只读绑定。
此练习中的 $effect
尝试创建画布上下文,但 canvas
为 undefined
。首先在组件的顶层声明它...
App
<script>
import { paint } from './gradient.js';
let canvas;
$effect(() => {
// ...
});
</script>
...然后将指令添加到 <canvas>
元素
App
<canvas bind:this={canvas} width={32} height={32}></canvas>
请注意,canvas
的值在组件挂载之前将保持 undefined
——换句话说,在 $effect
运行之前您无法访问它。
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
<script>
import { paint } from './gradient.js';
$effect(() => {
const context = canvas.getContext('2d');
let frame = requestAnimationFrame(function loop(t) {
frame = requestAnimationFrame(loop);
paint(context, t);
});
return () => {
cancelAnimationFrame(frame);
};
});
</script>
<canvas width={32} height={32}></canvas>
<style>
canvas {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #666;
mask: url(./svelte-logo-mask.svg) 50% 50% no-repeat;
mask-size: 60vmin;
-webkit-mask: url(./svelte-logo-mask.svg) 50% 50% no-repeat;
-webkit-mask-size: 60vmin;
}
</style>