博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
touch事件小结
阅读量:6306 次
发布时间:2019-06-22

本文共 608 字,大约阅读时间需要 2 分钟。

原文:

目前支持良好的三种触摸事件:1. touchstart 2. touchmove 3. touchend。

ToucheEvent -> TouchList -> Touch

触摸事件属性(TouchEvent):
Represents an event that occurs when the state of touches on the surface changes.

触摸事件列表(TouchList):

Represents a group of touches; this is used when the user has, for example, multiple fingers on the surface at the same time.

  • touches 当前位于屏幕上的所有手指动作的列表。

  • targetTouches 位于当前 DOM 元素上的手指动作的列表

  • changedTouches 涉及当前事件的手指动作的列表。例如,在一个 touchend 事件中,这将是移开手指

    触摸事件(Touch):

Represents a single point of contact between the user and the touch surface.

位置信息:

  • clientX/Y

  • pageX/Y

  • screenX/y

    这些信息可以判断拖动的方向(下拉刷新/上拉加载)。

转载地址:http://pqixa.baihongyu.com/

你可能感兴趣的文章
linux下使用screen和ping命令对网络质量进行监控
查看>>
数据库设计技巧
查看>>
css定位概述
查看>>
C# 动态修改配置文件 (二)
查看>>
BOM:文档对象模型 --树模型
查看>>
我的Android进阶之旅------>WindowManager.LayoutParams介绍
查看>>
segment
查看>>
获取鼠标的原始移动值
查看>>
Linux信号 编程
查看>>
有关滚动与位置
查看>>
Box2D自定义重力
查看>>
chpasswd
查看>>
mysqldump --single-transaction 和--lock-tables参数详解
查看>>
android 数据库_sql语句总结
查看>>
python购物车
查看>>
解决python2和python3的pip冲突
查看>>
面试/编程
查看>>
linux每日命令(16):head命令
查看>>
公司内部分享【富有成效的每日站会】总结
查看>>
打造一个上传图片到图床利器的插件(Mac版 开源)
查看>>