ui-js-building-ui-event.md 2.4 KB
Newer Older
1
# 手势事件
M
mamingshuai 已提交
2

Z
zengyawen 已提交
3
手势表示由单个或多个事件识别的语义动作(例如:点击、拖动和长按)。一个完整的手势也可能由多个事件组成,对应手势的生命周期。支持的事件有:
M
mamingshuai 已提交
4

Z
zengyawen 已提交
5
**触摸**
Z
zengyawen 已提交
6 7 8 9 10
- touchstart:手指触摸动作开始。

- touchmove:手指触摸后移动。

- touchcancel:手指触摸动作被打断,如来电提醒、弹窗。
M
mamingshuai 已提交
11

Z
zengyawen 已提交
12
- touchend:手指触摸动作结束。
M
mamingshuai 已提交
13 14 15 16 17 18 19 20 21 22 23

**点击**

click:用户快速轻敲屏幕。

**长按**

longpress:用户在相同位置长时间保持与屏幕接触。

具体的使用示例如下:

H
HelloCrease 已提交
24
```html
M
mamingshuai 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
<!-- xxx.hml -->
<div class="container">
  <div class="text-container" onclick="click">
    <text class="text-style">{{onClick}}</text>
  </div>
  <div class="text-container" ontouchstart="touchStart">
    <text class="text-style">{{touchstart}}</text>
  </div>
  <div class="text-container" ontouchmove="touchMove">
    <text class="text-style">{{touchmove}}</text>
  </div>
  <div class="text-container" ontouchend="touchEnd">
    <text class="text-style">{{touchend}}</text>
  </div>
  <div class="text-container" ontouchcancel="touchCancel">
    <text class="text-style">{{touchcancel}}</text>
  </div>
  <div class="text-container" onlongpress="longPress">
    <text class="text-style">{{onLongPress}}</text>
  </div>
</div>
```

H
HelloCrease 已提交
48
```css
M
mamingshuai 已提交
49 50
/* xxx.css */
.container {
W
wangshuainan 已提交
51 52
  width: 100%;
  height: 100%;
M
mamingshuai 已提交
53 54 55 56 57
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text-container {
W
wangshuainan 已提交
58
  margin-top: 30px;
M
mamingshuai 已提交
59
  flex-direction: column;
W
wangshuainan 已提交
60 61 62
  width: 600px;
  height: 70px;
  background-color: #0000FF;
M
mamingshuai 已提交
63 64 65 66 67 68 69 70 71 72
}
.text-style {
  width: 100%;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  color: #ffffff;
}
```

H
HelloCrease 已提交
73
```js
M
mamingshuai 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
// xxx.js
export default {
  data: {
    touchstart: 'touchstart',
    touchmove: 'touchmove',
    touchend: 'touchend',
    touchcancel: 'touchcancel',
    onClick: 'onclick',
    onLongPress: 'onlongpress',
  },
  touchCancel: function (event) {
    this.touchcancel = 'canceled';
  },
  touchEnd: function(event) {
    this.touchend = 'ended';
  },
  touchMove: function(event) {
    this.touchmove = 'moved';
  }, 
  touchStart: function(event) {
    this.touchstart = 'touched';
  },
  longPress: function() {
    this.onLongPress = 'longpressed';
  },
  click: function() {
    this.onClick = 'clicked';
  },
}
```
W
wangshuainan 已提交
104 105

![zh-cn_image_00000011](figures/zh-cn_image_00000011.gif)