Hi i'm using kineticjs and I was wondering how it is possible to drop a shape into a specified class canvas. So if i have 5 canvas with the same class this is where i could drop my shape into. If its not dropped in one of these canvas it goes back where it was! The only code i have for right now is my shape i've created.
var stage = new Kinetic.Stage({
container: 'container',
width: 965,
height: 200
});
var layer = new Kinetic.Layer();
var poly = new Kinetic.Rect({
x: 75,
y: 75,
width: 100,
height: 50,
fill: '#00D2FF',
stroke: 'white',
strokeWidth: 4,
draggable: true
});
// add the shape to the layer
layer.add(poly);
// add the layer to the stage
stage.add(layer);
