码迷,mamicode.com
首页 > Web开发 > 详细

js绑定touch事件

时间:2015-12-16 18:49:44      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

定义:

    var touchEvents = {
        touchstart: "touchstart",
        touchmove: "touchmove",
        touchend: "touchend",
        /**
         * @desc:判断是否pc设备,若是pc,需要更改touch事件为鼠标事件,否则默认触摸事件
         */
        initTouchEvents: function () {
            if (isPC()) {
                this.touchstart = "mousedown";
                this.touchmove = "mousemove";
                this.touchend = "mouseup";
            }
        }
    };

调用:

$(".category-item").bind(touchEvents.touchstart, function (event) {
code;
});

  

js绑定touch事件

标签:

原文地址:http://www.cnblogs.com/jingyong001/p/5051745.html

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