码迷,mamicode.com
首页 > 其他好文 > 详细

触摸屏幕时间长短时间、禁止页面点击事件

时间:2018-08-30 23:36:07      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:时间   页面   style   点击事件   function   xtend   mct   star   color   

/*触摸屏幕时间事件(需要先引入JQ插件)*/

$.fn.extend({
  mctap:function(func){
    var _this=this;
    this.on(‘touchstart‘,function(e){
    tiptimer=new Date();
    }).on(‘touchend‘,function(e){
      if(new Date()-tiptimer>300) {func.bind(this,e)();}
    })
  }
});

/*禁止页面点击*/

$("#xxx").css({"pointer-events":"none"});

触摸屏幕时间长短时间、禁止页面点击事件

标签:时间   页面   style   点击事件   function   xtend   mct   star   color   

原文地址:https://www.cnblogs.com/Cloudloong/p/9563231.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!