5.2.4 • Published 10 months ago

mota-gesture v5.2.4

Weekly downloads
22
License
MIT
Repository
-
Last release
10 months ago

此项目已归档,如果有相关需要,请使用 react-finger : https://github.com/Houfeng/react-finger

Mota Gesture

Mota Gesture 是基于 Mota 同时兼容 PC & Mobile 的事件扩展,让基于 React + Mota 的移动应用 开发变得更加便捷。

基本使用

安装所需依赖,如果已经安装了 react、react-dom、mota,可单独安装 mota-touch, 注意 Mota 版本需要是 >=4.0.0

npm install react react-dom mota mota-gesture --save

在类组件中使用

import React from 'react';
import { model } from 'mota';
import { gesture } from 'mota-gesture';

@model(YourModel)
@gesture
export class App extends React.Component {

  onTap = (event)=>{
    console.log('onTap', event);
  };

  render(){
    return <div onTap={this.onTap}></div>
  }

}

在函数组件中使用

import React from 'react';
import { model } from 'mota';
import { gesture } from 'mota-gesture';

const App = gesture(()=>{
  const onTap = ()=>{
    console.log('onTap', event);
  }
  return <div onTap={onTap}></div>
},{});

事件支持

Mota Gesture 支持多种常用的手势事件,并且所有事件都自动兼容 PC & Mobile

事件设备说明
onTapMOBILE & PC点击
onTapHoldMOBILE & PC长按
onDoubleTapMOBILE & PC双击
onSwipeMOBILE & PC任意滑动
onSwipeUpMOBILE & PC向上滑动
onSwipeRightMOBILE & PC向右滑动
onSwipeDownMOBILE & PC向下滑动
onSwipeLeftMOBILE & PC向左滑动
onPinchStartMOBILE手势开始(两点)
onPinchMOBILE手势更新
onPinchEndMOBILE手势结束(两点)
onPointDownMOBILE & PC在按下时
onPointMoveMOBILE & PC在移动时
onPointUpMOBILE & PC在弹起时
5.2.4

10 months ago

5.2.3

2 years ago

5.2.2

2 years ago

5.2.1

3 years ago

5.2.0

3 years ago

5.1.6

3 years ago

5.1.5

3 years ago

5.1.4

3 years ago

5.1.3

3 years ago

5.1.2

3 years ago

5.1.1

3 years ago

5.1.0

3 years ago

5.0.2

3 years ago

5.0.1

3 years ago

5.0.0

3 years ago

4.0.1

4 years ago

4.0.0

4 years ago

3.1.0

4 years ago

3.0.3

4 years ago

3.0.2

4 years ago

3.0.1

4 years ago

3.0.0

4 years ago

2.2.0

4 years ago

2.1.5

4 years ago

2.1.4

4 years ago

2.1.3

4 years ago

2.1.2

4 years ago

2.1.1

4 years ago

2.0.8

4 years ago

2.1.0

4 years ago

2.0.7

4 years ago

2.0.6

4 years ago