Created
July 8, 2016 01:59
-
-
Save tuanchauict/5e765bd9f016cf8dd42f7778a9f2d5af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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