File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
<script lang =' ts' >
2
2
import { prefersReducedMotion } from ' svelte/motion' ;
3
+ import { innerHeight , innerWidth } from ' svelte/reactivity/window' ;
3
4
import { animate , cancelAnimate , createCircles } from ' ./circle.js' ;
4
5
5
6
/**
19
20
20
21
let canvas = $state <HTMLCanvasElement | undefined >(undefined );
21
22
const ctx = $derived .by (() => canvas ?.getContext (' 2d' ));
22
- let width = $state (0 );
23
- let height = $state (0 );
24
23
25
24
/** jsが読み込まれたかどうか */
26
25
let jsLoaded = $state (false );
50
49
});
51
50
</script >
52
51
53
- <svelte:window bind:innerWidth ={width } bind:innerHeight ={height } />
54
52
<!-- svelte-ignore element_invalid_self_closing_tag -->
55
53
<div
56
54
uno-bg-LP-backgroud
67
65
<canvas
68
66
bind:this ={canvas }
69
67
style:--blur =' {blurStrength }px'
70
- height ={height + blurStrength * 4 }
68
+ height ={innerHeight . current ?? 0 + blurStrength * 4 }
71
69
uno-bg-LP-backgroud
72
70
uno-filter-blur =' [--blur]'
73
71
uno-left =' 50%'
77
75
uno-transform-translate-x =' -50%'
78
76
uno-transform-translate-y =' -50%'
79
77
uno-z- 1
80
- width ={width + blurStrength * 4 }
78
+ width ={innerWidth . current ?? 0 + blurStrength * 4 }
81
79
/>
82
80
{/if }
83
81
</div >
You can’t perform that action at this time.
0 commit comments