fix new resources

This commit is contained in:
sky
2025-06-30 03:22:29 -04:00
parent 5d0a1b87df
commit e11d48d181
10 changed files with 20 additions and 2617 deletions

View File

@ -23,12 +23,14 @@ function cursor() {
cursor.style.backgroundColor = "var(--color-1)";
cursor.style.position = "absolute";
cursor.style.borderRadius = "100%";
// cursor.style.filter = "blur(40px)";
cursor.style.filter = "blur(40px)";
cursor.style.opacity = "1";
cursor.style.pointerEvents = "none";
document.body.appendChild(cursor);
document.addEventListener("mousemove", (e) => {
cursor.style.top = `${e.clientY - 15}px`;
cursor.style.left = `${e.clientX - 15}px`;
console.log(e);
cursor.style.top = `${e.pageY - 15}px`;
cursor.style.left = `${e.pageX - 15}px`;
})
}