首页 > 代码库 > 移动端判断触摸的方向
移动端判断触摸的方向
最近做微信端页面,于是趁周末梳理了下移动端的事件这一块。
通过判断手指在屏幕上移动的位置减去手指放在屏幕上时的位置,就可以得出是往什么方向滑动:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> div{ position: relative; width: 500px; height: 500px; background-color: #ccc; } </style> </head> <body> <div id="d"></div> <script type="text/javascript"> var d = document.getElementById(‘d‘), startX,startY,moveX,moveY; d.addEventListener(‘touchstart‘,function(e){ var target = e.targetTouches[0]; startX = target.clientX, startY = target.clientY; }); d.addEventListener(‘touchmove‘,function(e){ var target = e.targetTouches[0]; moveX = target.clientX; moveY = target.clientY; var x = moveX - startX, y = moveY - startY; // 如果x>0并且x轴上移动的距离大于y轴上移动的距离 if(Math.abs(x) > Math.abs(y) && x > 0){ alert(‘向右‘); } else if(Math.abs(x) > Math.abs(y) && x < 0){ alert(‘向左‘); } else if(Math.abs(x) < Math.abs(y) && y > 0){ alert(‘向下‘); } else if(Math.abs(x) < Math.abs(y) && x < 0){ alert(‘向上‘); } }); </script> </body> </html>
这里是通过计算得出来的x轴的距离跟y轴的距离相比较来判断的。
移动端判断触摸的方向
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。