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
イベントは動作しますが、これを使用することはできません。お客様のイベントで ...
アイデア? 、イベントプロパティのターゲットを使用することができる