23 lines
377 B
Vue
23 lines
377 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
opacity: {
|
|
type: Number,
|
|
default: 0.025,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="pointer-events-none fixed inset-0 z-9999 size-full"
|
|
:style="{
|
|
backgroundImage: 'url(/assets/noise.png)',
|
|
opacity: props.opacity,
|
|
}"
|
|
/>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|