web-dev-qa-db-ja.com

JavaScriptで長押し?

JavaScript(またはjQuery)で「長押し」を実装することは可能ですか?どうやって?

alt text
(ソース: androinica.com

HTML

<a href="" title="">Long press</a>

JavaScript

$("a").mouseup(function(){
  // Clear timeout
  return false;
}).mousedown(function(){
  // Set timeout
  return false; 
});
109
Randy Mayer

「jQuery」の魔法はなく、JavaScriptタイマーだけです。

var pressTimer;

$("a").mouseup(function(){
  clearTimeout(pressTimer);
  // Clear timeout
  return false;
}).mousedown(function(){
  // Set timeout
  pressTimer = window.setTimeout(function() { ... Your Code ...},1000);
  return false; 
});

Maycow Mouraの答えに基づいて、私はこれを書きました。また、ユーザーが右クリックを行わなかったことを保証します。これにより、長押しがトリガーされ、モバイルデバイスで動作します。 DEMO

var node = document.getElementsByTagName("p")[0];
var longpress = false;
var presstimer = null;
var longtarget = null;

var cancel = function(e) {
    if (presstimer !== null) {
        clearTimeout(presstimer);
        presstimer = null;
    }

    this.classList.remove("longpress");
};

var click = function(e) {
    if (presstimer !== null) {
        clearTimeout(presstimer);
        presstimer = null;
    }

    this.classList.remove("longpress");

    if (longpress) {
        return false;
    }

    alert("press");
};

var start = function(e) {
    console.log(e);

    if (e.type === "click" && e.button !== 0) {
        return;
    }

    longpress = false;

    this.classList.add("longpress");

    if (presstimer === null) {
        presstimer = setTimeout(function() {
            alert("long click");
            longpress = true;
        }, 1000);
    }

    return false;
};

node.addEventListener("mousedown", start);
node.addEventListener("touchstart", start);
node.addEventListener("click", click);
node.addEventListener("mouseout", cancel);
node.addEventListener("touchend", cancel);
node.addEventListener("touchleave", cancel);
node.addEventListener("touchcancel", cancel);

CSSアニメーションを使用したインジケーターも含める必要があります。

p {
    background: red;
    padding: 100px;
}

.longpress {
    -webkit-animation: 1s longpress;
            animation: 1s longpress;
}

@-webkit-keyframes longpress {
    0%, 20% { background: red; }
    100% { background: yellow; }
}

@keyframes longpress {
    0%, 20% { background: red; }
    100% { background: yellow; }
}
30
kelunik

JQueryモバイルAPIのtapholdイベントを使用できます。

jQuery("a").on("taphold", function( event ) { ... } )
25
doganak

タイムアウトといくつかのマウスイベントハンドラを使用して独自に実装するのに十分に単純に見えますが、同じ要素でプレスと長押しの両方をサポートするクリックアンドドラッグリリースなどのケースを考えると、少し複雑になります、iPadなどのタッチデバイスでの作業。私は longclick jQueryプラグインGithub )を使用することになりました。携帯電話などのタッチスクリーンデバイスのみをサポートする必要がある場合は、 jQuery Mobile taphold event も試してください。

15
ʇsәɹoɈ

これを解決するために long-press-event(0.5k pure JavaScript)を作成し、long-pressイベントをDOMに追加しました。

any要素でlong-pressをリッスンします:

// the event bubbles, so you can listen at the root level
document.addEventListener('long-press', function(e) {
  console.log(e.target);
});

specific要素でlong-pressをリッスンします:

// get the element
var el = document.getElementById('idOfElement');

// add a long-press event listener
el.addEventListener('long-press', function(e) {

    // stop the event from bubbling up
    e.preventDefault()

    console.log(e.target);
});

IE9 +、Chrome、Firefox、Safariおよびハイブリッドモバイルアプリ(CordovaおよびiOS/Android上のIonic)で動作します

デモ

10
John Doherty

jQueryプラグイン。 $(expression).longClick(function() { <your code here> });と入力してください。 2番目のパラメーターはホールド期間です。デフォルトのタイムアウトは500ミリ秒です。

(function($) {
    $.fn.longClick = function(callback, timeout) {
        var timer;
        timeout = timeout || 500;
        $(this).mousedown(function() {
            timer = setTimeout(function() { callback(); }, timeout);
            return false;
        });
        $(document).mouseup(function() {
            clearTimeout(timer);
            return false;
        });
    };

})(jQuery);
10
piwko28
$(document).ready(function () {
    var longpress = false;

    $("button").on('click', function () {
        (longpress) ? alert("Long Press") : alert("Short Press");
    });

    var startTime, endTime;
    $("button").on('mousedown', function () {
        startTime = new Date().getTime();
    });

    $("button").on('mouseup', function () {
        endTime = new Date().getTime();
        longpress = (endTime - startTime < 500) ? false : true;
    });
});

DEMO

5
razzak

クロスプラットフォーム開発者向け(これまでに与えられたすべての回答はiOSでは機能しません)

マウスアップ/ダウンはAndroidでは問題なく動作するように見えましたが、すべてのデバイス(サムスンtab4)ではありません。 iOSではまったく機能しませんでした。

さらなる研究では、これは要素が選択されているためと思われ、ネイティブの拡大がリスナーを中断させます。

このイベントリスナーを使用すると、ユーザーが500ミリ秒間画像を保持している場合、サムネイル画像をbootstrapモーダルで開くことができます。

レスポンシブ画像クラスを使用するため、画像のより大きなバージョンが表示されます。このコードは完全にテスト済みです(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)
});
5
tyler_mitchell

Diodeusの答えは素晴らしいですが、onClick関数を追加することはできません。onclickを入れてもhold関数は実行されません。また、Razzakの答えはほぼ完璧ですが、ホールド機能はmouseupでのみ実行され、一般に、ユーザーがホールドを続けても機能が実行されます。

だから、私は両方に参加し、これを作りました:

$(element).on('click', function () {
    if(longpress) { // if detect hold, stop onclick function
        return false;
    };
});

$(element).on('mousedown', function () {
    longpress = false; //longpress is false initially
    pressTimer = window.setTimeout(function(){
    // your code here

    longpress = true; //if run hold function, longpress is true
    },1000)
});

$(element).on('mouseup', function () {
    clearTimeout(pressTimer); //clear time on mouseup
});
4
Maycow Moura

最新のモバイルブラウザの場合:

document.addEventListener('contextmenu', callback);

https://developer.mozilla.org/en-US/docs/Web/Events/contextmen

2
Kory Nunn

マウスダウンでその要素のタイムアウトを設定し、マウスアップでそれをクリアすることができます:

$("a").mousedown(function() {
    // set timeout for this element
    var timeout = window.setTimeout(function() { /* … */ }, 1234);
    $(this).mouseup(function() {
        // clear timeout for this element
        window.clearTimeout(timeout);
        // reset mouse up event handler
        $(this).unbind("mouseup");
        return false;
    });
    return false;
});

これにより、各要素は独自のタイムアウトを取得します。

2
Gumbo

最もエレガントでクリーンなのはjQueryプラグインです: https://github.com/untill/jquery.longclick/ 、packackeとしても利用可能: https://www.npmjs.com/package/jquery.longclick

つまり、次のように使用します。

$( 'button').mayTriggerLongClicks().on( 'longClick', function() { your code here } );

このプラグインの利点は、ここにある他の回答のいくつかとは対照的に、クリックイベントがまだ可能であることです。また、マウスアップの前に、デバイスを長押しするように、長いクリックが発生することに注意してください。だから、それは機能です。

1
untill

Jquery-mobileのタップホールドを使用できます。 jquery-mobile.jsを含めると、次のコードが正常に機能します

$(document).on("pagecreate","#pagename",function(){
  $("p").on("taphold",function(){
   $(this).hide(); //your code
  });    
});
1
Prashant_M

クリックまたは長押し[jQuery]を識別する時間を確認できます

function AddButtonEventListener() {
try {
    var mousedowntime;
    var presstime;
    $("button[id$='" + buttonID + "']").mousedown(function() {
        var d = new Date();
        mousedowntime = d.getTime();
    });
    $("button[id$='" + buttonID + "']").mouseup(function() {
        var d = new Date();
        presstime = d.getTime() - mousedowntime;
        if (presstime > 999/*You can decide the time*/) {
            //Do_Action_Long_Press_Event();
        }
        else {
            //Do_Action_Click_Event();
        }
    });
}
catch (err) {
    alert(err.message);
}
} 
0
Derin

jqueryタッチイベントを使用できます。 ( こちらを参照

  let holdBtn = $('#holdBtn')
  let holdDuration = 1000
  let holdTimer

  holdBtn.on('touchend', function () {
    // finish hold
  });
  holdBtn.on('touchstart', function () {
    // start hold
    holdTimer = setTimeout(function() {
      //action after certain time of hold
    }, holdDuration );
  });
0
Irteza Asad

私にとっては、そのコードで動作します(jQueryを使用):

var int       = null,
    fired     = false;

var longclickFilm = function($t) {
        $body.css('background', 'red');
    },
    clickFilm = function($t) {
        $t  = $t.clone(false, false);
        var $to = $('footer > div:first');
        $to.find('.empty').remove();
        $t.appendTo($to);
    },
    touchStartFilm = function(event) {
        event.preventDefault();
        fired     = false;
        int       = setTimeout(function($t) {
            longclickFilm($t);
            fired = true;
        }, 2000, $(this)); // 2 sec for long click ?
        return false;
    },
    touchEndFilm = function(event) {
        event.preventDefault();
        clearTimeout(int);
        if (fired) return false;
        else  clickFilm($(this));
        return false;
    };

$('ul#thelist .thumbBox')
    .live('mousedown touchstart', touchStartFilm)
    .live('mouseup touchend touchcancel', touchEndFilm);
0
molokoloco

ロングプレスキーボードイベントに何かが必要だったので、これを書きました。

var longpressKeys = [13];
var longpressTimeout = 1500;
var longpressActive = false;
var longpressFunc = null;

document.addEventListener('keydown', function(e) {
    if (longpressFunc == null && longpressKeys.indexOf(e.keyCode) > -1) {
        longpressFunc = setTimeout(function() {
            console.log('longpress triggered');
            longpressActive = true;
        }, longpressTimeout);

    // any key not defined as a longpress
    } else if (longpressKeys.indexOf(e.keyCode) == -1) {
        console.log('shortpress triggered');
    }
});

document.addEventListener('keyup', function(e) {
    clearTimeout(longpressFunc);
    longpressFunc = null;

    // longpress key triggered as a shortpress
    if (!longpressActive && longpressKeys.indexOf(e.keyCode) > -1) {
        console.log('shortpress triggered');
    }
    longpressActive = false;
});
0
Brad.Smith

このような?

doc.addEeventListener("touchstart", function(){
    // your code ...
}, false);    
0
翁沈顺