问题
is there anyway to do this to let the user know the element is clickable?. I have been using easeljs but haven't found anything related
回答1:
You could use this: How to make clickable points in html5 canvas?
and while the mouse is in that area, you can set: $('#canvasID').css('cursor','pointer')
and $('#canvasID').css('cursor','auto')
when it's not over it.
回答2:
I am using Easeljs and to get a pointer cursor I use myObject.cursor = 'pointer'
and stage.enableMouseOver(20);
( from the DragAndDrop.html example code )
来源:https://stackoverflow.com/questions/12608729/cursorpointer-on-hover-html5-canvas-element