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

移动端与PC端的触屏事件

时间:2016-10-02 21:46:01      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

由于移动端是触摸事件,所以要用到H5的属性touchstart/touchmove/touched,但是PC端只支持鼠标事件,所以此时可以这样转换

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"; } } };

移动端与PC端的触屏事件

标签:

原文地址:http://www.cnblogs.com/laoniaofly/p/5927936.html

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