UNPKG

handsfree

Version:

Quickly integrate face, hand, and/or pose tracking to your frontend projects in a snap ✨👌

44 lines (40 loc) 1.21 kB
/** * Direct a choir of blobs in goosebump-inducing harmony * - Only works with one pinch at a time * @see https://artsandculture.google.com/experiment/AAHWrq360NcGbw * @see https://handsfree.js.org/ref/plugin/pinchers.html#pinch-states-with-pinchstate */ handsfree.enablePlugins('browser') handsfree.update({ hands: true, weboji: false }) // Maps handsfree pincher events to const eventMap = { start: 'mousedown', held: 'mousemove', released: 'mouseup' } handsfree.use('blobOpera', { onFrame: ({hands}) => { if (!hands.multiHandLandmarks) return hands.pointer.forEach((pointer, hand) => { if (pointer.isVisible && hands.pinchState[hand][0]) { // Get the event and element to send events to const event = eventMap[hands.pinchState[hand][0]] const $el = document.elementFromPoint(pointer.x, pointer.y) // Dispatch the event if ($el) { $el.dispatchEvent( new MouseEvent(event, { bubbles: true, cancelable: true, clientX: pointer.x, clientY: pointer.y }) ) } } }) } })