我正在使用 Kinetic.js 创建对象。现在我想使用 jsPlumb.js 连接两个对象作为源和目标。但我无法连接它们。我的代码看起来像这样
var end0=stage.find("#"+source.attrs.id);
var end1=stage.find("#"+destination.attrs.id);
jsPlumb.makeSource(end0);
jsPlumb.makeTarget(end1);
jsPlumb.connect({
source:e0,
target:e1,
paintStyle:{ lineWidth:10, strokeStyle:'black' },
endpoint:new jsPlumb.Endpoints.Rectangle({width:10, height:15}),
anchor:[ "Perimeter", { shape:"Circle" } ]
});
我可以一起使用它们吗?如果是,请给我一个例子