touchmove中に指の下の要素のIDを取得するにはどうすればよいですか?
私が達成したいのは:
- バインドタッチ[開始|終了|移動]
- タッチスタート開始選択時
- touchmove中に、指の下で「触れられた」すべてのdom要素を収集します
サンプルコード
var collected = [];
$('body').bind('touchstart touchmove touchend', function(event) {
event.preventDefault();
if(event.type == 'touchstart') {
collected = [];
} else if(event.type == 'touchmove') {
// id of the element under my finger??
// insert in collected the id of the element
} else if(event.type == 'touchend') {
// some code
}
});
解決しました。