Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
どのオブジェクトが移動されたかを認識する方法はありますか?たとえば、canvase に 5 つのオブジェクトがあり、1 つのオブジェクトを移動する場合、いつから変更されたかについての情報はありますか? ありがとう
ドラッグ イベントが発生したノードである targetNode を持つイベント変数である dragend ハンドラ関数をアタッチします。
node.on('dragend', function (event) { console.log('dragged node: ' + event.targetNode); }