double-tap-component

double tap on elements. supports touch and mouse devices

Usage no npm install needed!

<script type="module">
  import doubleTapComponent from 'https://cdn.skypack.dev/double-tap-component';
</script>

README

double-tap

double tap on elements. handles both double tap and double click.

Installation

Install with component(1):

$ component install component/double-tap

Example

doubletap(box, function(e) {
  box.style.backgroundColor = randomColor();
});

API

doubletap(el, fn)

Initialize Doubletap.

doubletap.unbind()

Unbind Doubletap

TODO

  • normalize the event object in component/tap. right now depending on if the device supports touch or not, the event object will be different (ex. no e.pageX on mobile)

  • instead of handling click in doubleclick, move click logic to component/tap

License

MIT