What's the simplest way to add a click event handler to a canvas element that will return the x and y coordinates of the click (relative to the canvas element)?
No legacy browser compatibility required, Safari, Opera and Firefox will do.
|
What's the simplest way to add a click event handler to a canvas element that will return the x and y coordinates of the click (relative to the canvas element)? No legacy browser compatibility required, Safari, Opera and Firefox will do. |
|||||||||||
|
|
As described here:
Worked perfectly fine for me. |
|||||
|
|
Since the canvas isn't always styled relative to the entire page, the
The last line makes things convenient for getting the mouse coordinates relative to a canvas element. All that's needed to get the useful coordinates is
|
|||||||||||||||||||||
|
|
This should not be any different from getting mouse events from normal dom elements. quirksmode has a good reference on that. |
|||
|
|
|
Be wary while doing the coordinate conversion; there are multiple non-cross-browser values returned in a click event. Using clientX and clientY alone are not sufficient if the browser window is scrolled (verified in Firefox 3.5 and Chrome 3.0). This quirks mode article provides a more correct function that can use either pageX or pageY or a combination of clientX with document.body.scrollLeft and clientY with document.body.scrollTop to calculate the click coordinate relative to the document origin. UPDATE: Additionally, offsetLeft and offsetTop are relative to the padded size of the element, not the interior size. A canvas with the padding: style applied will not report the top-left of its content region as offsetLeft. There are various solutions to this problem; the simplest one may be to clear all border, padding, etc. styles on the canvas itself and instead apply them to a box containing the canvas. |
||||
|
|
|
According to fresh Quirksmode the clientX and clientY methods are supported in all major browsers. So, here it goes - the good, working code that works in a scrolling div on a page with scrollbars:
This also requires jQuery for $(canvas).offset(). |
|||||
|
|
|
I made a full demostration that works in every browser with the full source code of the solution of this problem: Coordinates of a mouse click on Canvas in Javascript. To try the demo, copy the code and paste it into a text editor. Then save it as example.html and, finally, open the file with a browser. |
|||
|
|
|
Here is a small modification to Ryan Artecona's answer for canvases with a variable (%) width:
|
|||
|
|
|
Modern browser's now seem to handle this for you now. Chrome and IE9 (at least) support the offsetX/Y and Firefox supports layerX/Y. The following function gives me what I need. Just pass it the event from the click handler.
|
|||
|
|
|
Hey, this is in dojo, just cause it's what I had the code in already for a project. It should be fairly Obvious how to convert it back to non dojo vanilla JavaScript.
Hope that helps. |
|||||
|
|
In Prototype, use cumulativeOffset() to do the recursive summation as mentioned by Ryan Artecona above. |
|||
|
|