Is there a way to get the location mouse inside a <canvas> tag? I want the location relative to to the upper right corner of the <canvas>, not the entire page.
|
|
||||
|
|
|
Easiest way is probably to add a onmousemove event listener to the canvas element, and then you can get the coordinates relative to the canvas from the event itself. This is trivial to accomplish if you only need to support specific browsers, but there are differences between f.ex. Opera and Firefox. Something like this should work for those two:
|
|||||||||||||||
|
|
Also note that you'll need CSS: position: relative; set to your canvas tag, in order to get the relative mouse position inside the canvas. |
|||||||||
|
|
For mouse position, I usually use jQuery since it normalizes some of the event attributes.
This works for me in all the browsers. EDIT: I copied the code from one of my classes I was using, so the jQuery call to |
||||
|
|
|
GEE is an endlessly helpful library for smoothing out troubles with canvas, including mouse location. |
|||||||
|
|
I'll share the most bulletproof mouse code that I have created thus far. It works on all browsers will all manner of padding, margin, border, and add-ons (like the stumbleupon top bar)
You'll notice that I use some (optional) variables that are undefined in the function. They are:
I'd recommend only computing those once, which is why they are not in the |
|||
|
|
|
Subtract the X and Y offsets of the canvas DOM element from the mouse position to get the local position inside the canvas. |
|||||||||||||||||
|
|
I'd use jQuery.
This way your canvas can be anywhere on your page, relative or absolute. |
|||
|
|
|
I have spent two days trying to solve the issue of how to find a click event on a canvas that is placed within div tags and its position altered by CSS. It is easy to get a click event on a canvas, but something with the moving of it and altering its position is a pain. Miki725, Thank you very much, you code has solved my problem. |
|||
|
|