zoukankan      html  css  js  c++  java
  • WAP端 touch事件触发顺序记录

    IOS7.0 safari 滚动滚动条的时候, 最后手指放开 (scroll 总是在 touchend后面,所以要用 setTimeout)
      touchstart touchmove(多个) touchend scroll(一个)
    IOS8.4 safari 滚动滚动条的时候
      touchstart touchmove(多个) scroll(0个或者多个) touchend scroll(0个或者多个)

    IOS7.0 和 IOS8.4 UC 浏览器 10.6.5.627 滚动滚动条的时候
      正常滚动的时候 touchstart touchmove(多个) touchend scroll(一个)

    SAMSUNG GT-19308 4.3 原生浏览器 滚动滚动条的时候
      touchstart touchmove(只有一个) scroll scroll 没有touchend

    UC浏览器 10.6.5.627 滚动滚动条的时候
      touchstart touchmove(只有一个) scroll(0个或者多个) touchcancel scroll(0个或者1个)
      长按的时候(最后手指放开)   touchstart touchcancel
      单点击的时候 touchstart touchend

    按住不动的情况
      Galaxy note(?版本) 自带浏览器 按下去马上触发touchstart,放开触发touchend;
      SAMSUNG GT-19308 4.3 自带浏览器 按下去什么都不触发,放开同时触发 touchstart 和 touchend;
      以上2个手机的 UC浏览器 10.6.5.627 按下去马上触发touchstart,放开触发touchcancel;

  • 相关阅读:
    python打印4个九九乘法表
    mysql语法归纳总结
    帆软BI报表的创建
    jmeter+influxdb+grafana可视化监控接口测试
    jmeter 自动化
    linux安装docker+jmeter分布式
    jmeter连接mysql数据库
    cmd切换盘符
    jmeter接口测试教程
    python3 进程中 获取进程号和杀死进程
  • 原文地址:https://www.cnblogs.com/zhengming2016/p/5566285.html
Copyright © 2011-2022 走看看