React react-fastclick-alt 移动端点击
Posted Asen^_^
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React react-fastclick-alt 移动端点击相关的知识,希望对你有一定的参考价值。
1. Install
npm install --save-dev react-fastclick-alt
2. 用法
将元素或者component放在 <FastClick>...</FastClick> 中
import React from ‘react‘; import FastClick from ‘react-fastclick-alt‘; import ReactDOM from ‘react-dom‘; ReactDOM.render(<FastClick><MyApp/></FastClick>, document.getElementById(‘app‘));
3. 监测到tap事件后会阻止冒泡 event.stopPropagation()
4. 两个参数
threshold 在px中不能再转换为点击之前,触摸可以移动多远。 默认为15px。
timeThreshold 在不能再将点击转换为点击之前可以持续点击多长时间,以毫秒为单位。 默认为125毫秒。
以上是关于React react-fastclick-alt 移动端点击的主要内容,如果未能解决你的问题,请参考以下文章
import * as react from 'react' 与 import react from 'react' 有啥区别
“使用 JSX 时,React 必须在范围内”(react/react-in-jsx-scope 与 index.js 上的“window.React = React”)