Coding Global Background
Coding Global

Cursor is not transforming

Archived 2 years ago
46 messages
1 members
3 years ago
Open in Discord
.
Ansh
Verified

The cursor is not transforming after giving it the hover tag to it, here is the code please help: ```js const cursor = document.querySelector('.cursor') document.addEventListener('mousemove', (e) => { cursor.style.left = e.pageX + 'px'; cursor.style.top = e.pageY + 'px'; }) ```

Replies (46)