拖动时候用到的三个事件:mousedown
、mousemove
、mouseup
在移动端都不起任何作用。毕竟移动端是没有鼠标的,查资料后发现,在移动端与之相对应的分别是:touchstart
、touchmove
、touchend
事件。还有一点要注意的是在PC端获取当前鼠标的坐标是:event.clientX
和event.clientY
,在移动端获取坐标位置则是:event.touches[0].clientX
和event.touches[0].clientY
。
相关文章
- 02-12h5手机端触摸事件(touchstart、touchmove和touchend)
- 02-12mousedown、mousemove、mouseup和touchstart、touchmove、touchend
- 02-12移动触摸事件(touchstart、touchmove和touchend)
- 02-12(转)HTML5实战与剖析之触摸事件(touchstart、touchmove和touchend)
- 02-12HTML5实战与剖析之触摸事件(touchstart、touchmove和touchend)(转)
- 02-12移动端开发touchstart,touchmove,touchend事件详解和项目
- 02-12javaScript -- touch事件详解(touchstart、touchmove和touchend)
- 02-12JavaScript区分click事件和mousedown(mouseup、mousemove)方法
- 02-12HTML5实战与剖析之触摸事件(touchstart、touchmove和touchend)