微信长按事件

html

            <div class="content-cen">
                <div class="cup cup1 showImg1"></div>
                <div class="cup cup2 showImg2" style="display: none;">
                    <!--<img src="{:CDN2_ACT_URL}/src/activity/2018/oneMillion/images/cup2.gif?v={$v}"/>-->
                </div>
                <div id="discern" class="discern"></div>
            </div>

css

.game-page .cup {
    width:4.74rem;
    height:4.65rem;
    margin:.16rem auto .55rem;
}
.game-page .content-cen{
    -webkit-user-select:none;  
    -khtml-user-select:none;
    -moz-user-select:none; 
    -ms-user-select:none;
    user-select:none; 
    /*position: absolute;
    top:48.88%;*/
    position: relative;
}
.game-page .cup {
    background: url("../images/cup.png") repeat;
    background-size: 100% 100%;
}
.game-page .cup2 {
    background: url("../images/cup2.gif") repeat;
    background-size: 100% 100%;
}
.discern {
    width: 2.24rem;
    height: 2.24rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1.12rem;
    margin-left: -1.12rem;
}

 

js

    //指纹长按
    var timeOutEvent=0;  
    $(function(){  
        $(".discern").on({  
            touchstart: function(e){
                $(".showImg1").hide(); 
                $(".showImg2").show(); 
                timeOutEvent = setTimeout("longPress()",2000);  
                e.preventDefault();  
            },  
    //      touchmove: function(){  
    //                  clearTimeout(timeOutEvent);   
    //              timeOutEvent = 0;   
    //      },  
            touchend: function(){  
                clearTimeout(timeOutEvent);  
                if(timeOutEvent!=0){   
    //              alert("你这是点击,不是长按");   
                }   
                $(".showImg2").hide(); 
                $(".showImg1").show(); 
                return false; 
            }  
        }) 

 将图片使用背景图的形式!!!

转载于:https://www.cnblogs.com/qdlhj/p/8932000.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值