Guest User

Untitled

a guest
Apr 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function showClientCoords(win, x, y, timeout=1000) {
  2. let d = win.document.createElement("div");
  3. d.style.width = "10px";
  4. d.style.height = "10px";
  5. d.style.borderRadius = "5px";
  6. d.style.backgroundColor = "red";
  7. d.style.position = "fixed";
  8. d.style.top = (y + 5) + "px";
  9. d.style.left = (x + 5) + "px";
  10. win.document.documentElement.appendChild(d);
  11. win.setTimeout(function() {
  12. d.remove();
  13. }, timeout);
  14. }
Add Comment
Please, Sign In to add comment