그림을 길게 눌러서 QR코드를 식별하지만 그림을 숨기지 않습니다.

2246 단어 JS
let timeOutEvent = 0;

$(".erweima").on({
    touchstart: function(e){
        timeOutEvent = setTimeout(function () {
            timeOutEvent = 0;
            e.preventDefault();
        },300);

    },
    touchmove: function(){
        clearTimeout(timeOutEvent);
        timeOutEvent = 0;
    },
    touchend: function(){
        clearTimeout(timeOutEvent);
        if(timeOutEvent != 0){
            _self.isShowErweima = false;
        }
        return false;
    }
})

좋은 웹페이지 즐겨찾기