Search code examples
kineticjsdrag

KineticJS on drag event for stage


I'm searching a event like:

stage.on('drag',function(){
  // do something
});

Only I can search in Internet is events dragstart and dragend. Something like that is exist in KineticJS?


Solution

  • I believe you're looking for the event dragmove?

    If so:

    stage.on('dragmove',function(){
      // do something
    });