some small changes

This commit is contained in:
zyqunix 2024-11-28 18:28:25 +01:00
parent eca1457225
commit 77458487e4
3 changed files with 38 additions and 29 deletions

View file

@ -123,6 +123,8 @@
<img class="ascii" src="https://easyfiles.cc/2024/5/5d696a25-bab7-49ed-a325-a0b1bb812ab8/transformedascii.png"alt=""> <img class="ascii" src="https://easyfiles.cc/2024/5/5d696a25-bab7-49ed-a325-a0b1bb812ab8/transformedascii.png"alt="">
</div> </div>
<div id="cursoreffectelement"></div>
<script src="index.js"></script> <script src="index.js"></script>
<script src="audio.js"></script> <script src="audio.js"></script>
<script src="particle.js"></script> <script src="particle.js"></script>

View file

@ -1013,10 +1013,10 @@ var cursoreffects = function (t) {
}), t }), t
}({}); }({});
window.onload = function() { window.onload = function () {
cursoreffects.fairyDustCursor({ cursoreffects.fairyDustCursor({
element: document.body, element: document.getElementById('cursoreffectelement'),
color: "#FFFFFF" color: "#FFFFFF"
}) })
}; };

View file

@ -8,8 +8,8 @@ html, body {
align-items: center; align-items: center;
font-family: monospace; font-family: monospace;
background-color: black; background-color: black;
overflow: hidden;
color: white !important; color: white !important;
overflow: hidden;
} }
@font-face { @font-face {
@ -322,7 +322,7 @@ html, body {
} }
.blurBG { .blurBG {
backdrop-filter: blur(0); backdrop-filter: blur(0px);
width: 105%; width: 105%;
height: 110%; height: 110%;
border-radius: 10px; border-radius: 10px;
@ -373,3 +373,10 @@ div.duration-info {
button { button {
user-select: none; user-select: none;
} }
#cursoreffectelement {
width: 100%;
height: 90%;
position: absolute;
z-index: 0;
}