我是动力学 js 的新手。我尝试使用canvg库将svg加载到动力学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);