user242302
user242302

Reputation: 167

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?

Upvotes: 0

Views: 221

Answers (1)

pgrodrigues
pgrodrigues

Reputation: 2078

I believe you're looking for the event dragmove?

If so:

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

Upvotes: 1

Related Questions