mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 21:24:05 +02:00
inital
This commit is contained in:
commit
f93ecf2b38
47 changed files with 6578 additions and 0 deletions
21
components/Noise.vue
Normal file
21
components/Noise.vue
Normal file
|
@ -0,0 +1,21 @@
|
|||
<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: 0;
|
||||
background-image: url('/noise.png');
|
||||
background-repeat: repeat;
|
||||
image-rendering: pixelated;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue