16 lines
325 B
Vue
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>
|