我们还可以绑定到 window
的某些属性,例如 scrollY
应用
<svelte:window bind:scrollY={y} />
您可以绑定的属性列表如下
innerWidth
innerHeight
outerWidth
outerHeight
scrollX
scrollY
online
—window.navigator.onLine
的别名
除了 scrollX
和 scrollY
之外,所有属性都是只读的。
上一页 下一页
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
let y = $state(0);
</script>
<svelte:window />
<span>depth: {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>