Skip to content

Instantly share code, notes, and snippets.

@tanjo
Last active September 28, 2018 09:08
Show Gist options
  • Save tanjo/f3dde96c5d2610d3ca6cf1d4093e36f9 to your computer and use it in GitHub Desktop.
Save tanjo/f3dde96c5d2610d3ca6cf1d4093e36f9 to your computer and use it in GitHub Desktop.
ブラウザの座標を表示する
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