sciactive / tinygesture

Very small gesture recognizer for JavaScript. Swipe, pan, tap, doubletap, longpress, pinch, and rotate.
https://sciactive.github.io/tinygesture/
Apache License 2.0
202 stars 18 forks source link

Doubletap without Tap? #11

Open jetic83 opened 5 months ago

jetic83 commented 5 months ago

You showed how to implement a long press without Tap.

Is there a similar thing for a double tap without tap?

Thanks!

hperrin commented 5 months ago

If you implement a bit of a delay on registering the tap, you can achieve this. It does mean that your tap gesture won't feel "instant", but you could set the delay to something low enough that most people wouldn't notice, like maybe 250ms.

jetic83 commented 5 months ago

Thanks, this works.