Skip to content

Instantly share code, notes, and snippets.

@vartec
Created August 28, 2021 06:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vartec/6eba0aec534b0478fe17c399e9e1c321 to your computer and use it in GitHub Desktop.
Save vartec/6eba0aec534b0478fe17c399e9e1c321 to your computer and use it in GitHub Desktop.
let cursorTimer;
document.body.onmousemove = () => {
document.body.style.cursor = null;
clearTimeout(cursorTimer);
cursorTimer = setTimeout(() => document.body.style.cursor = 'none', 3000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment