Skip to content

Instantly share code, notes, and snippets.

@binux
Forked from anonymous/index.html
Last active January 5, 2018 14:51
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 binux/4ca56695f2072e565ed26bd6580f995e to your computer and use it in GitHub Desktop.
Save binux/4ca56695f2072e565ed26bd6580f995e to your computer and use it in GitHub Desktop.
JS Bin// source http://jsbin.com/jaqavetema
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<span id="pos"></span>
<canvas id="myCanvas" width="1024" height="728"></canvas>
<script>
var span = document.getElementById('pos');
var canvas = document.getElementById('myCanvas');
var context = canvas.getContext('2d');
function getMousePos(canvas, evt) {
var rect = canvas.getBoundingClientRect();
return {
x: evt.clientX - rect.left,
y: evt.clientY - rect.top
};
}
canvas.addEventListener('mousemove', function(evt) {
var mousePos = getMousePos(canvas, evt);
span.textContent = JSON.stringify(mousePos);
context.lineTo(mousePos.x, mousePos.y);
context.fillStyle = 'red';
context.fillRect(mousePos.x - 2, mousePos.y - 2, 5, 5);
context.stroke();
}, false);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment