28 lines
829 B
HTML
28 lines
829 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mouse Position</title>
|
|
<link rel="stylesheet" href="../include/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
Example from <a href="http://amzn.com/1430236655?tag=html5anim-20"><em>Foundation HTML5 Animation with JavaScript</em></a>
|
|
</header>
|
|
<canvas id="canvas" width="400" height="400"></canvas>
|
|
<aside>Open debugging console in web browser and click mouse.</aside>
|
|
|
|
<script src="../include/utils.js"></script>
|
|
<script>
|
|
window.onload = function () {
|
|
var canvas = document.getElementById('canvas'),
|
|
mouse = utils.captureMouse(canvas);
|
|
|
|
canvas.addEventListener('mousedown', function () {
|
|
console.log("x: " + mouse.x + ", y: " + mouse.y);
|
|
}, false);
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|