Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js touchmove get client position

src.addEventListener('touchstart', function(e) {
  const clientX = e.touches[0].clientX;
  const clientY = e.touches[0].clientY;
}, false);
 
PREVIOUS NEXT
Tagged: #js #touchmove #client #position
ADD COMMENT
Topic
Name
9+6 =