Noise.vue 372 B

123456789101112131415
  1. <script setup lang="ts">
  2. import noisePng from '@/assets/noise.png'
  3. import { toRefsPreferencesStore } from '@/stores'
  4. const { noiseOpacity } = toRefsPreferencesStore()
  5. </script>
  6. <template>
  7. <div
  8. class="pointer-events-none fixed inset-0 z-[99998] size-full"
  9. :style="{
  10. backgroundImage: `url(${noisePng})`,
  11. opacity: noiseOpacity,
  12. }"
  13. />
  14. </template>