I am trying to do a bit of experimentation with KinetiJs Canvas library . What I have done below is - Drawn a Rectangle . And whenever there is a mouseover - I want a line to be drawn between specific points . But , I do not see any line when a mouseover happens.
I have tried checking if the onmousemove function gets called or not . It does get called . But the line doesnt get drawn. Can anyone please explain why ?
thanks,
$(document).ready(function () {
var stage = new Kinetic.Stage({
container: "sketchcanvas",
width: 600,
height: 600
});
var layer = new Kinetic.Layer();
var rect = new Kinetic.Rect({
x: 50,
y: 50,
width: 500,
height: 500,
fill: "#00D2FF",
stroke: "black",
strokeWidth: 4
});
rect.on("mousemove", function () {
var mousePos = stage.getMousePosition();
var x = mousePos.x;
var y = mousePos.y;
var line = new Kinetic.Line({
points: [60, 60, 80, 80, 100, 200],
stroke: "black",
strokeWidth: 15,
lineCap: 'round',
lineJoin: 'round'
});
layer.add(line);
});
layer.add(rect);
stage.add(layer);
});