Last active
September 28, 2018 09:08
-
-
Save tanjo/f3dde96c5d2610d3ca6cf1d4093e36f9 to your computer and use it in GitHub Desktop.
ブラウザの座標を表示する
This file contains hidden or 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
var div = document.createElement('div'); | |
div.id = "tj-pos-view"; | |
div.style.cssText = "position: fixed; right: 0; top: 0; background: black; color: white;" | |
document.body.appendChild(div); | |
document.body.addEventListener("mousemove", (e) => document.getElementById("tj-pos-view").innerText = "x: " + e.pageX + " y: " + e.pageY); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment