在Kineticjs中,是否可以将droptarget附加到被拖动的元素。发生掉落时,我需要突出显示目标。我正在使用的代码是
circle.on("dragstart", function(e) { layer.draw();});
circle.on("dragmove", function(e) {cosnole.log("drag move");});
circle.on('dragend', function(e) {cosnole.log("drag end");});
在Kineticjs中,是否可以将droptarget附加到被拖动的元素。发生掉落时,我需要突出显示目标。我正在使用的代码是
circle.on("dragstart", function(e) { layer.draw();});
circle.on("dragmove", function(e) {cosnole.log("drag move");});
circle.on('dragend', function(e) {cosnole.log("drag end");});