戻る

タッチイベント

タップ

タップイベント

  • イベント名
  • tap

  • 第1引数
  • イベントオブジェクト

$("#target").bind("tap",function(e){
	alert("タップされました");
});

タップホールドイベント

  • イベント名
  • taphold

  • 第1引数
  • イベントオブジェクト

$("#target").bind("taphold",function(e){
	alert("タップホールドされました");
});

スワイプ

スワイプイベント

  • イベント名
  • swipe

  • 第1引数
  • イベントオブジェクト

$("#target").bind("swipe",function(e){
	alert("スワイプされました");
});

左スワイプイベント

  • イベント名
  • swipeleft

  • 第1引数
  • イベントオブジェクト

$("#target").bind("swipeleft",function(e){
	alert("左スワイプされました");
});

右スワイプイベント

  • イベント名
  • swiperight

  • 第1引数
  • イベントオブジェクト

$("#target").bind("swiperight",function(e){
	alert("右スワイプされました");
});
inserted by FC2 system