mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 13:14:04 +02:00
21 lines
No EOL
372 B
Vue
21 lines
No EOL
372 B
Vue
<template>
|
|
<div class="noise"></div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.noise {
|
|
position: absolute;
|
|
overflow: hidden;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
pointer-events: none;
|
|
user-select: none;
|
|
z-index: -1;
|
|
background-image: url('/noise.png');
|
|
background-repeat: repeat;
|
|
image-rendering: pixelated;
|
|
overflow: hidden;
|
|
}
|
|
</style> |