最近适配响应式,发现手机端的时候,绑定的mousemove事件失效了,查了一下。
移动端使用如下事件进行绑定
1. touchstart 当手指触摸屏幕的时候触发
2. touchmove 当手指在屏幕来回的滑动时候触发
3. touchend 当手指离开屏幕的时候触发
4. touchcancel 当*终止滑动的时候触发(来电,弹消息)
$(document).on('touchmove', function (e) {
//...
});
最近适配响应式,发现手机端的时候,绑定的mousemove事件失效了,查了一下。
移动端使用如下事件进行绑定
1. touchstart 当手指触摸屏幕的时候触发
2. touchmove 当手指在屏幕来回的滑动时候触发
3. touchend 当手指离开屏幕的时候触发
4. touchcancel 当*终止滑动的时候触发(来电,弹消息)
$(document).on('touchmove', function (e) {
//...
});