add stars

This commit is contained in:
sky
2025-07-07 19:44:08 -04:00
parent e11d48d181
commit aa4bb69786
7 changed files with 136 additions and 91 deletions

View File

@ -28,7 +28,6 @@ function cursor() {
cursor.style.pointerEvents = "none";
document.body.appendChild(cursor);
document.addEventListener("mousemove", (e) => {
console.log(e);
cursor.style.top = `${e.pageY - 15}px`;
cursor.style.left = `${e.pageX - 15}px`;
})