フリック中はJSで表示させているカウントダウンタイマーが動かないので
フリック中だけ非表示にする。
これでいいかは知らんがざっとメモメモ。
[javascript]
$(function(){
var box = $(‘#content’)[0];
box.addEventListener(“touchstart”, touchHandler, false);
box.addEventListener(“touchmove”, touchHandler, false);
box.addEventListener(“touchend”, touchHandler, false);
function touchHandler(e){
var touch = e.touches[0];
if(e.type == “touchmove”){
$(‘#timerArea’).hide();
}
if(e.type == “touchend”){
$(‘#timerArea’).show();
}
}
[/javascript]
参考URL
■>web帳 | スマートフォン JavaScript タッチ、フリックイベント実装
コメントを残す