Skip to content

Instantly share code, notes, and snippets.

@tuanchauict
Created July 8, 2016 01:59
Show Gist options
  • Save tuanchauict/5e765bd9f016cf8dd42f7778a9f2d5af to your computer and use it in GitHub Desktop.
Save tuanchauict/5e765bd9f016cf8dd42f7778a9f2d5af to your computer and use it in GitHub Desktop.
elem = document.createElement("div");
elem.style.position="absolute";
elem.style.width="30px";
elem.style.height="30px";
elem.style.zIndex="9999999999";
elem.style.background="#f00";
elem.style.pointerEvents="none";
document.body.appendChild(elem);
document.onmousemove = function(e){
elem.style.left = e.x - 15;
elem.style.top = e.y - 15;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment