some small changes
This commit is contained in:
parent
eca1457225
commit
77458487e4
3 changed files with 38 additions and 29 deletions
|
@ -123,6 +123,8 @@
|
|||
<img class="ascii" src="https://easyfiles.cc/2024/5/5d696a25-bab7-49ed-a325-a0b1bb812ab8/transformedascii.png"alt="">
|
||||
</div>
|
||||
|
||||
<div id="cursoreffectelement"></div>
|
||||
|
||||
<script src="index.js"></script>
|
||||
<script src="audio.js"></script>
|
||||
<script src="particle.js"></script>
|
||||
|
|
|
@ -1013,10 +1013,10 @@ var cursoreffects = function (t) {
|
|||
}), t
|
||||
}({});
|
||||
|
||||
window.onload = function() {
|
||||
window.onload = function () {
|
||||
|
||||
cursoreffects.fairyDustCursor({
|
||||
element: document.body,
|
||||
element: document.getElementById('cursoreffectelement'),
|
||||
color: "#FFFFFF"
|
||||
})
|
||||
};
|
|
@ -8,8 +8,8 @@ html, body {
|
|||
align-items: center;
|
||||
font-family: monospace;
|
||||
background-color: black;
|
||||
overflow: hidden;
|
||||
color: white !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
|
@ -322,7 +322,7 @@ html, body {
|
|||
}
|
||||
|
||||
.blurBG {
|
||||
backdrop-filter: blur(0);
|
||||
backdrop-filter: blur(0px);
|
||||
width: 105%;
|
||||
height: 110%;
|
||||
border-radius: 10px;
|
||||
|
@ -373,3 +373,10 @@ div.duration-info {
|
|||
button {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#cursoreffectelement {
|
||||
width: 100%;
|
||||
height: 90%;
|
||||
position: absolute;
|
||||
z-index: 0;
|
||||
}
|
Loading…
Add table
Reference in a new issue