判断手机屏幕上的横向滑动(左滑和右滑)

06-02 1034阅读

在JavaScript中,你可以通过监听触摸事件(touch events)来判断用户在手机屏幕上的横向滑动方向。以下是实现方法:

基本实现方案

let touchStartX = 0;
let touchEndX = 0;
function handleTouchStart(event) {
  touchStartX = event.changedTouches[0].screenX;
}
function handleTouchEnd(event) {
  touchEndX = event.changedTouches[0].screenX;
  handleSwipe();
}
function handleSwipe() {
  const threshold = 50; // 最小滑动距离阈值
  const diffX = touchEndX - touchStartX;
  if (Math.abs(diffX) > threshold) {
    if (diffX > 0) {
      console.log("向右滑动");
      // 执行右滑操作
    } else {
      console.log("向左滑动");
      // 执行左滑操作
    }
  }
}
// 添加事件监听
const element = document.getElementById('swipe-area');
element.addEventListener('touchstart', handleTouchStart, false);
element.addEventListener('touchend', handleTouchEnd, false);

更完善的实现(包含滑动速度检测)

let touchStartX = 0;
let touchStartTime = 0;
const element = document.getElementById('swipe-area');
element.addEventListener('touchstart', (e) => {
  touchStartX = e.touches[0].clientX;
  touchStartTime = Date.now();
}, false);
element.addEventListener('touchmove', (e) => {
  e.preventDefault(); // 阻止默认行为,避免页面滚动
}, { passive: false });
element.addEventListener('touchend', (e) => {
  const touchEndX = e.changedTouches[0].clientX;
  const touchEndTime = Date.now();
  
  const diffX = touchEndX - touchStartX;
  const duration = touchEndTime - touchStartTime;
  const velocity = Math.abs(diffX) / duration; // 计算滑动速度
  
  const threshold = 50; // 最小滑动距离
  const minVelocity = 0.3; // 最小滑动速度(像素/毫秒)
  
  if (Math.abs(diffX) > threshold && velocity > minVelocity) {
    if (diffX > 0) {
      console.log("向右滑动");
      // 执行右滑操作
    } else {
      console.log("向左滑动");
      // 执行左滑操作
    }
  }
}, false);

React 组件实现示例

import React, { useRef } from 'react';
const SwipeDetector = () => {
  const touchStartX = useRef(0);
  const touchStartTime = useRef(0);
  const handleTouchStart = (e) => {
    touchStartX.current = e.touches[0].clientX;
    touchStartTime.current = Date.now();
  };
  const handleTouchEnd = (e) => {
    const touchEndX = e.changedTouches[0].clientX;
    const touchEndTime = Date.now();
    
    const diffX = touchEndX - touchStartX.current;
    const duration = touchEndTime - touchStartTime.current;
    const velocity = Math.abs(diffX) / duration;
    
    const threshold = 50;
    const minVelocity = 0.3;
    
    if (Math.abs(diffX) > threshold && velocity > minVelocity) {
      if (diffX > 0) {
        console.log("向右滑动");
        // 执行右滑操作
      } else {
        console.log("向左滑动");
        // 执行左滑操作
      }
    }
  };
  return (
    { width: '100%', height: '200px', backgroundColor: '#eee' }}
      onTouchStart={handleTouchStart}
      onTouchEnd={handleTouchEnd}
    >
      在此区域滑动
    
  );
};
export default SwipeDetector;

注意事项

  1. 阈值选择:threshold 值需要根据实际需求调整,太小可能会误触,太大可能导致滑动不灵敏
  2. 性能考虑:避免在touchmove事件中执行复杂操作
  3. 兼容性:现代浏览器都支持触摸事件,但要注意某些旧版本浏览器的兼容性
  4. 被动事件:如果不需要阻止默认行为,可以设置{ passive: true }提高滚动性能
  5. 多指触摸:上述代码只处理单指滑动,如需处理多指手势需要额外逻辑

进阶优化

  1. 可以添加垂直滑动检测,并判断是横向还是纵向滑动
  2. 可以添加滑动过程中的视觉反馈
  3. 可以使用现有的手势库如Hammer.js(https://hammerjs.github.io/)简化开发


  const element = document.getElementById('swipe-area');
  const hammer = new Hammer(element);
  
  hammer.on('swipeleft', () => console.log('向左滑动'));
  hammer.on('swiperight', () => console.log('向右滑动'));

免责声明:我们致力于保护作者版权,注重分享,被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理! 图片声明:本站部分配图来自人工智能系统AI生成,觅知网授权图片,PxHere摄影无版权图库和百度,360,搜狗等多加搜索引擎自动关键词搜索配图,如有侵权的图片,请第一时间联系我们。

相关阅读

目录[+]

取消
微信二维码
微信二维码
支付宝二维码