Skip to main content

Chúng ta cũng có thể bind với một số thuộc tính cụ thể của window, như scrollY:

App.svelte
<svelte:window bind:scrollY={y} />

Danh sách các thuộc tính bạn có thể bind như sau:

  • innerWidth
  • innerHeight
  • outerWidth
  • outerHeight
  • scrollX
  • scrollY
  • online — một bí danh cho window.navigator.onLine

Tất cả trừ scrollXscrollY là chỉ đọc.

Tiếp theo: <svelte:body>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script>
	let y = 0;
</script>
 
<svelte:window />
 
<span>độ sâu: {y}px</span>
 
<style>
	:global(body) {
		height: 400vw;
		background: url(./deepsea.webp);
		background-size: cover;
	}
 
	span {
		position: fixed;
		font-size: 2em;
		color: white;
		font-variant: tabular-nums;
	}
</style>
initialising