Cursor: pointer to hoverml html5 canvas element

anyway, so that the user knows that the item is viewable ?. I use easeljs but did not find anything related

+7
source share
2 answers

You can use this: How to make clickable points in html5 canvas?

and while the mouse is in this area, you can set: $('#canvasID').css('cursor','pointer') and $('#canvasID').css('cursor','auto') , when she is not above him.

+7
source

I use Easeljs and get the cursor pointer. I use myObject.cursor = 'pointer' and stage.enableMouseOver(20); (from the sample example DragAndDrop.html).

+3
source

All Articles