2017-09-19 12 views
0

svg.jsを使用すると、カスタムイベントから要素にどのようにアクセスしますか?svg.jsを使用してカスタムイベントから要素にアクセスする方法

myCircle.on('someEvent', function(event) { 
    var circleX = event.x(); // event.x is not a function 
    circleX = event.target.x() // event.x is not a function 
    circleX = event.target.x() // event.target.x is not a function 
    circleX = this.x()   // this is undefined 
}); 

を使用してください。 in clickイベントは動作しますが、これを使用することはできません。お客様のイベントで ...

アイデア? 、イベントプロパティのターゲットを使用することができる

答えて

1

イベントから要素を取得するには...

... 
let element = SVG.get(event.target.id); 
... 
関連する問題