Skip to content

Commit 7cbcee9

Browse files
authored
Merge pull request #341 from vim-jp-radio/feature/339
svlete innerWidth innerHeightを使う
2 parents 41969fd + 0647931 commit 7cbcee9

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/lib/Backgroud/Backgroud.svelte

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script lang='ts'>
22
import { prefersReducedMotion } from 'svelte/motion';
3+
import { innerHeight, innerWidth } from 'svelte/reactivity/window';
34
import { animate, cancelAnimate, createCircles } from './circle.js';
45
56
/**
@@ -19,8 +20,6 @@
1920
2021
let canvas = $state<HTMLCanvasElement | undefined>(undefined);
2122
const ctx = $derived.by(() => canvas?.getContext('2d'));
22-
let width = $state(0);
23-
let height = $state(0);
2423
2524
/** jsが読み込まれたかどうか */
2625
let jsLoaded = $state(false);
@@ -50,7 +49,6 @@
5049
});
5150
</script>
5251

53-
<svelte:window bind:innerWidth={width} bind:innerHeight={height} />
5452
<!-- svelte-ignore element_invalid_self_closing_tag -->
5553
<div
5654
uno-bg-LP-backgroud
@@ -67,7 +65,7 @@
6765
<canvas
6866
bind:this={canvas}
6967
style:--blur='{blurStrength}px'
70-
height={height + blurStrength * 4}
68+
height={innerHeight.current ?? 0 + blurStrength * 4}
7169
uno-bg-LP-backgroud
7270
uno-filter-blur='[--blur]'
7371
uno-left='50%'
@@ -77,7 +75,7 @@
7775
uno-transform-translate-x='-50%'
7876
uno-transform-translate-y='-50%'
7977
uno-z-1
80-
width={width + blurStrength * 4}
78+
width={innerWidth.current ?? 0 + blurStrength * 4}
8179
/>
8280
{/if}
8381
</div>

0 commit comments

Comments
 (0)