https://github.com/kelen/longpress
javascript long press
https://github.com/kelen/longpress
Last synced: 10 months ago
JSON representation
javascript long press
- Host: GitHub
- URL: https://github.com/kelen/longpress
- Owner: KELEN
- Created: 2017-09-26T02:58:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-26T03:00:34.000Z (over 8 years ago)
- Last Synced: 2025-02-03T09:47:46.352Z (12 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#### 使用方法
```javascript
var el = document.getElementById("test");
new LongPress(el, {
interval: 1000,
onProgress: function (percent) {
console.log(percent)
},
onComplete: function () {
console.log("complete");
}
});
```
#### 参数
| 方法 | 说明 |
| ------ | ------ |
| interval | 延迟毫秒数 |
#### 监听方法
| 方法 | 参数 | 说明 |
| ------ | ------ | ------ |
| onProgress | percent | 百分比 |
| onComplete | 无 | 触发回调 |