Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to get touch events to be relative to the element and not the view port or the entire page?

I have the code,

var c = document.createElement("canvas");
c.width = 100;
c.height = 100;
c.addEventListener('touchmove',function(e){
    de.innerHTML = e.targetTouches[0].clientX + ", " + e.targetTouches[0].clientY;
}, false);

de being just a div to output data to, but clientX and clientY are not relative to the element. Is there any way to achieve this?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can't be relative to the element, you can be relative to:

  • The Viewport (clientX,clientY as you used).
  • The screen, it handles zooming (screenX...)
  • The page, it handles scrolling (pageX...)

For further info read the useful mobile safari reference guide, and/or Sitepen's article on this topic. Hope this helps.

share|improve this answer
Thanks for the information, I had already found those pages. I Think i've come up with a solution for calculating the values based on the elements position on the page. – Declan Cook Jul 13 '11 at 11:22
Could you show it once it's functional? I may need it later – monsieur_h Jul 13 '11 at 13:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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