Skip to main content

コンポーネントにある要素を読み取り専用のバインディングにするための特別なディレクティブとして、bind:this を使用することができます。

この演習の $effect では、canvas context を作成しようとしていますが、canvasundefined です。まずコンポーネントのトップレベルで宣言することから始めましょう...

App
<script>
	import { paint } from './gradient.js';

	let canvas;

	$effect(() => {
		// ...
	});
</script>

...それからディレクティブを <canvas> 要素に追加します:

App
<canvas bind:this={canvas} width={32} height={32}></canvas>

コンポーネントがマウントされるまで canvasundefined のままであることにご注意ください。言い換えると、$effect が実行されるまでアクセスできないということです。

Edit this page on 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
<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>