如何用Android和iphone的javascript检测长触摸压力?

时间:2011-05-26 13:26:04

标签: javascript iphone android html5 mobile-website

如何使用javascript for android和iphone检测长触摸压力? 原生javascript或jquery ......

我想听起来像:

<input type='button' onLongTouch='myFunc();' />

11 个答案:

答案 0 :(得分:39)

使用Touch End检测长时间触摸的问题是,如果您希望事件在一段时间后触发,它将无法工作。最好在触摸启动时使用计时器,并在触摸结束时清除事件计时器。可以使用以下模式:

var onlongtouch; 
var timer;
var touchduration = 500; //length of time we want the user to touch before we do something

touchstart() {
    timer = setTimeout(onlongtouch, touchduration); 
}

touchend() {

    //stops short touches from firing the event
    if (timer)
        clearTimeout(timer); // clearTimeout, not cleartimeout..
}

onlongtouch = function() { //do something };

答案 1 :(得分:6)

以下是约书亚答案的扩展版本,因为他的代码效果很好,直到用户不执行多点触控(您可以用两个手指点击屏幕,功能将被触发两次,4个手指 - 4次)。 经过一些额外的测试场景后,我甚至触发了非常自由地触摸的可能性,并在每次点击后接收功能。

我添加了一个名为&#39; lockTimer&#39;这应该在用户触发&#39; touchend&#39;之前锁定任何其他触摸开始。

&#13;
&#13;
var onlongtouch; 
var timer, lockTimer;
var touchduration = 800; //length of time we want the user to touch before we do something

function touchstart(e) {
	e.preventDefault();
	if(lockTimer){
		return;
	}
    timer = setTimeout(onlongtouch, touchduration); 
	lockTimer = true;
}

function touchend() {
    //stops short touches from firing the event
    if (timer){
        clearTimeout(timer); // clearTimeout, not cleartimeout..
		lockTimer = false;
	}
}

onlongtouch = function() { 
	document.getElementById('ping').innerText+='ping\n'; 
};

document.addEventListener("DOMContentLoaded", function(event) { 
  window.addEventListener("touchstart", touchstart, false);
  window.addEventListener("touchend", touchend, false);
});
&#13;
<div id="ping"></div>
&#13;
&#13;
&#13;

答案 2 :(得分:2)

我在Android应用中这样做了:

  1. 注册事件监听器:

    var touchStartTimeStamp = 0;
    var touchEndTimeStamp   = 0;
    
    window.addEventListener('touchstart', onTouchStart,false);
    window.addEventListener('touchend', onTouchEnd,false);
    
  2. 添加了功能:

    var timer;
    function onTouchStart(e) {
        touchStartTimeStamp = e.timeStamp;
    }
    
    function onTouchEnd(e) {
        touchEndTimeStamp = e.timeStamp;
    
        console.log(touchEndTimeStamp - touchStartTimeStamp);// in miliseconds
    }
    
  3. 检查了时差并完成了我的工作

  4. 我希望这会有所帮助。

答案 3 :(得分:1)

就在这里:http://m14i.wordpress.com/2009/10/25/javascript-touch-and-gesture-events-iphone-and-android/

使用touchstarttouchend检测给定时间的长时间触摸

答案 4 :(得分:1)

我们可以计算触摸开始时和触摸结束时的时差。如果计算的时差超过触摸持续时间,那么我们使用函数名称taphold。

var touchduration = 300; 
var timerInterval;

function timer(interval) {

    interval--;

    if (interval >= 0) {
        timerInterval = setTimeout(function() {
                            timer(interval);
                        });
    } else {
        taphold();
    }

}

function touchstart() {
    timer(touchduration);
}

function touchend() {
    clearTimeout(timerInterval);
}

function taphold(){
    alert("taphold");
}


document.getElementById("xyz").addEventListener('touchstart',touchstart);
document.getElementById("xyz").addEventListener('touchend',touchend);

答案 5 :(得分:1)

对于跨平台开发人员:

Mouseup / down似乎在 android 上运行正常 - 但不是所有设备,即(三星tab4)。在 iOS 上完全不起作用。

进一步研究它似乎是由于元素具有选择而原生放大率使听众中断。

如果用户将图像保持500毫秒,则此事件侦听器可以在引导模式中打开缩略图图像。

它使用响应式图像类,因此显示更大版本的图像。 这段代码已经过全面测试(iPad / Tab4 / TabA / Galaxy4):

var pressTimer;  
$(".thumbnail").on('touchend', function (e) {
   clearTimeout(pressTimer);
}).on('touchstart', function (e) {
   var target = $(e.currentTarget);
   var imagePath = target.find('img').attr('src');
   var title = target.find('.myCaption:visible').first().text();
   $('#dds-modal-title').text(title);
   $('#dds-modal-img').attr('src', imagePath);
   // Set timeout
   pressTimer = window.setTimeout(function () {
      $('#dds-modal').modal('show');
   }, 500)
});

答案 6 :(得分:1)

这种基于@Joshua的更好的解决方案,有时需要在事件内部直接调用代码(某些Web API需要用户授权才能触发某些操作),在这种情况下,您可以使用以下修改:

var longtouch;
var timer;
//length of time we want the user to touch before we do something
var touchduration = 500;

function touchstart() {
    longtouch = false;

    timer = setTimeout(function() {
       longtouch = true;
       timer = null
    }, touchduration);
}

function touchend() {
    if (timer) {
        clearTimeout(timer);
        timer = null;
    }
    if (longtouch) {
        // your long acction inside event
        longtouch = false;
    }
}

在setTimeout中,将标志设置为true,并在touchend内部,检查其是否已设置。

答案 7 :(得分:0)

此处发布的解决方案忽略了用户需要触摸屏幕以启动滚动的事实。如果用户不尝试滚动,则只需要长按行为即可。

function onLongPress(element, callback) {
  let timer;

  element.addEventListener('touchstart', () => { 
    timer = setTimeout(() => {
      timer = null;
      callback();
    }, 500);
  });

  function cancel() {
    clearTimeout(timer);
  }

  element.addEventListener('touchend', cancel);
  element.addEventListener('touchmove', cancel);
}

然后:

onLongPress(element, () => {
  console.log('Long pressed', element);
});

答案 8 :(得分:0)

这适用于我的用例,即想要在触摸屏幕时执行某些功能。

let triggerInterval = 200; // in milliseconds
let timerId;

function touchstart(e) {
  // e.preventDefault();
  timerId = setInterval(yourFunction, triggerInterval);
}

function touchend(e) {
  clearInterval(timerId);
}

function yourFunction() {
  //   perform your logic
}

document.addEventListener("touchstart", touchstart);
document.addEventListener("touchend", touchend);

注意:- triggerInterval 中的值越小,yourFunction() 的执行速度就越快。

完成程序后,您可以删除相应的事件侦听器:

document.removeEventListener("touchstart", touchstart);
document.removeEventListener("touchend", touchend);

答案 9 :(得分:0)

基于@djanowski 的解决方案来处理触摸滚动。这也应该防止长按上下文菜单和选择。

function onLongPress(element, callback) {
    var timeoutId;

    element.addEventListener('touchstart', function(e) {
        timeoutId = setTimeout(function() {
            timeoutId = null;
            e.stopPropagation();
            callback(e.target);
        }, 500);
    });

    element.addEventListener('contextmenu', function(e) {
        e.preventDefault();
    });

    element.addEventListener('touchend', function () {
        if (timeoutId) clearTimeout(timeoutId);
    });

    element.addEventListener('touchmove', function () {
        if (timeoutId) clearTimeout(timeoutId);
    });
}

onLongPress(document.getElementById('kitty1'), function(element) {
    alert('Meow from ' + element.outerHTML );
});

onLongPress(document.getElementById('kitty2'), function(element) {
    alert('Meow from ' + element.outerHTML );
});
img {
  max-width: 100%;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
<p>Long press on kitty!  Kitty should meow on 500ms long press but not scroll</p>

<img id="kitty1" src="http://placekitten.com/300/400" />
<img id="kitty2" src="http://placekitten.com/300/300" />

答案 10 :(得分:-1)

在所有浏览器中使用的长按事件

(function (a) {
        function n(b) { a.each("touchstart touchmove touchend touchcancel".split(/ /), function (d, e) { b.addEventListener(e, function () { a(b).trigger(e) }, false) }); return a(b) } function j(b) { function d() { a(e).data(h, true); b.type = f; jQuery.event.handle.apply(e, o) } if (!a(this).data(g)) { var e = this, o = arguments; a(this).data(h, false).data(g, setTimeout(d, a(this).data(i) || a.longclick.duration)) } } function k() { a(this).data(g, clearTimeout(a(this).data(g)) || null) } function l(b) {
            if (a(this).data(h)) return b.stopImmediatePropagation() ||
            false
        } var p = a.fn.click; a.fn.click = function (b, d) { if (!d) return p.apply(this, arguments); return a(this).data(i, b || null).bind(f, d) }; a.fn.longclick = function () { var b = [].splice.call(arguments, 0), d = b.pop(); b = b.pop(); var e = a(this).data(i, b || null); return d ? e.click(b, d) : e.trigger(f) }; a.longclick = { duration: 500 }; a.event.special.longclick = {
            setup: function () {
                /iphone|ipad|ipod/i.test(navigator.userAgent) ? n(this).bind(q, j).bind([r, s, t].join(" "), k).bind(m, l).css({ WebkitUserSelect: "none" }) : a(this).bind(u, j).bind([v,
                w, x, y].join(" "), k).bind(m, l)
            }, teardown: function () { a(this).unbind(c) }
        }; var f = "longclick", c = "." + f, u = "mousedown" + c, m = "click" + c, v = "mousemove" + c, w = "mouseup" + c, x = "mouseout" + c, y = "contextmenu" + c, q = "touchstart" + c, r = "touchend" + c, s = "touchmove" + c, t = "touchcancel" + c, i = "duration" + c, g = "timer" + c, h = "fired" + c
    })(jQuery);

以时间间隔绑定longclick事件

 $('element').longclick(250, longClickHandler);

触摸设备上的长按功能触发

function longClickHandler() {
    alter('Long tap Fired');
}