Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created June 9, 2018 22:35
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 ssougnez/7de3fbc98bf47f71ce68dcea6645cdaa to your computer and use it in GitHub Desktop.
Save ssougnez/7de3fbc98bf47f71ce68dcea6645cdaa to your computer and use it in GitHub Desktop.
import { fromEvent } from "rxjs";
let span = document.querySelector("#span-location");
fromEvent(document, "mousemove")
.subscribe((e) => {
span.innerHTML = `X: ${e.clientX} - Y: ${e.clientY}`;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment