スマホのタッチイベントからoffsetX, offsetYを取得する手法。
忘れがちなのでメモ。
const rect = event.target.getBoundingClientRect()
const offsetX = (event.touches[0].clientX - window.pageXOffset - rect.left)
const offsetY = (event.touches[0].clientY - window.pageYOffset - rect.top)