同時にタッチした数を調べる

説明

iPhoneではタッチイベントを利用することができます。同時にタッチした数を調べるにはevent.touches.lengthとします。最大5つまでタッチすることができます。

サンプルプログラム

window.onload = function(){
document.getElementById("block").ontouchstart = function(){
var n = event.touches.length;
document.getElementById("result").innerHTML = n+"本の指でタッチ中";
}
}
サンプルを実行
[戻る]