| 123456789101112131415 |
- <script setup lang="ts">
- import noisePng from '@/assets/noise.png'
- import { toRefsPreferencesStore } from '@/stores'
- const { noiseOpacity } = toRefsPreferencesStore()
- </script>
- <template>
- <div
- class="pointer-events-none fixed inset-0 z-[99998] size-full"
- :style="{
- backgroundImage: `url(${noisePng})`,
- opacity: noiseOpacity,
- }"
- />
- </template>
|