Imagine this. I want to let the user to touch the screen in point 'A' and drag to point 'B'. When the user go to spot 'B' successfully then I want to be somehow notified that the user passed the path.

My point is I want to somehow limit the movement of dragging. I want to allow the user to drag the green rectangle only on the red path.

Also if he start dragging and stop somewhere in the middle he should be able to resume the movement by pressing that green rectangle and continue with dragging.

I do not have any ideas how these things are done, so please give me some guidelines.Also if you have some useful links that will help me solving this problem it would be great.

enter image description here

link|improve this question

64% accept rate
feedback

1 Answer

To constrain mouse movement use something like this.

constraint = 100;
function onMouseMove(e) {
   mouseX = e.clientX-canvas.offsetLeft;
   mouseY = e.clientY-canvas.offsetTop;
   if (mouseX !== constraint) mouseX = constraint;
}  
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.