Files
2026-06-24 17:20:43 +09:00

16 lines
325 B
Vue

<script setup lang="ts">
withDefaults(defineProps<{ opacity?: number }>(), {
opacity: 0.014,
});
</script>
<template>
<div
class="pointer-events-none fixed inset-0 z-[9999] size-full"
:style="{
backgroundImage: 'url(/assets/noise.png)',
opacity,
}"
/>
</template>