我是动力学家的新手。我尝试使用canvg库将svg加载到kinetic js。当我试图将事件附加到svg时,我无法做到这一点。请参阅下面的代码。
var repo = new Kinetic.Path ({
x: 0, y: 0,
width: 250,
height: 250,
drawFunc: function (canvas) {
canvas.getContext().drawSvg("http://localhost:3000/repo.svg", 0, 0, 250, 250);
}
});
repo.on('mouseover', function(event) {
alert('test');
});
layer.add(repo);