0
votes
2answers
23 views

Can't Detect Mouseover on This KineticJS Shape?

I have a KineticJS shape that draws a bezier curve that is wider on one end. It draws correctly, but I can't yet detect a 'mouseover' event on it. I have created a small JSFiddle demo of the anomaly, ...
2
votes
1answer
70 views

KineticJS mouseover an image

I am trying to change the mouse pointer on mouseover an image, here is my script: var sc = new Kinetic.Layer(); var sCircle = new Image(); var ...
1
vote
2answers
152 views

KineticJS mouseover circle - cursor style

I am using the following to change the style of the cursor when the mouse is over the circle: circle1.on('mouseover', function () { document.body.style.cursor = 'pointer'; ...
1
vote
1answer
248 views

Updating the text displayed in a paragraph when the cursor hovers over an image on HTML5 canvas

I have a few images on an HTML5 canvas, and I want to call a function that will update the text displayed in an HTML <p></p> tag whenever the cursor hovers over one of these images. The ...
0
votes
0answers
419 views

KineticJS: mousedown/click not working when mouseover is set [closed]

Im working at HTML5 isometric engine for a game. Im in middle-stage and I've encountered big problem. If i bind mouseover and mouseleave then mousedown/click/mouseup events are not working. See ...
4
votes
3answers
906 views

KineticJS mouse event issue

I'm trying to make some kind of interactive map with KineticJS, where hovered places make other images to load. But i can't make mouse events work properly. Thing is, everything works fine but only ...
1
vote
1answer
639 views

How to make a Mouseover function in JavaScript less resource-intensive?

How can I make a mouseover function in JavaScript less resource-intensive? I used a way where one function activates another (mouse over) and this function activates the first (mouseout). I used ...
2
votes
2answers
2k views

Kineticjs overlapping shapes mouse over detection

Is there an easy way to do mouse over detection for multiple overlapping shapes in kineticjs (or rapheljs if this is easier in SVG). I.e. if I had two circles that partially overlap, I want to somehow ...
0
votes
2answers
1k views

Highlight a possible drop target while dragging a shape/group in KineticJS

I am using KineticJS for implementing a graphical editor. I would like to drag a KineticJS Group and drop it into another shape. So far so good, done binding the "dropend" event to a handler in the ...
0
votes
0answers
330 views

kineticjs : mouseover shape without fill

I'm working on a data visualisation that uses Arcs - built using kinetic.js. It's all great and looking good, except for the tooltips on my Arcs (see demo). the Tooltip event is triggered in a way ...
0
votes
2answers
237 views

kineticjs - mouseover inaccurate

I'm building a polar graph visualisation that needs tooltips over its arcs. It works, except that the mouseover is imprecise: it is triggered by mousing over places with no shape, and does not get ...