Coding Global Background
Coding Global

Cursor is not transforming

Archiviert 3 years ago
46 Nachrichten
1 Mitglieder
Erstellt 3 years ago
Aktualisiert 3 years ago
In Discord öffnen
.
Ansh
Verified
The cursor is not transforming after giving it the hover tag to it, here is the code please help:
const cursor = document.querySelector('.cursor')
                document.addEventListener('mousemove', (e) => {
                    cursor.style.left = e.pageX + 'px';
                    cursor.style.top = e.pageY + 'px';
})

Antworten (46)