UNPKG

handsfree

Version:

A Face Pointer and Pose Estimator for interacting with pages, desktops, robots, and more via gestures

75 lines (62 loc) 1.74 kB
/** * Move a pointer with your palm */ export default { models: 'handpose', tags: ['browser'], enabled: false, // The pointer element $pointer: null, // Pointers position pointer: { x: -20, y: -20 }, // Used to smoothen out the pointer tween: { x: 0, y: 0, positionList: [] }, config: { offset: { x: 0, y: 0 }, speed: { x: 1.5, y: 1.5 } }, onEnable () { if (!this.$pointer) { const $pointer = document.createElement('div') $pointer.classList.add('handsfree-pointer', 'handsfree-pointer-finger', 'handsfree-hide-when-started-without-handpose') document.body.appendChild($pointer) this.$pointer = $pointer } this.$pointer?.classList.remove('handsfree-hidden') this.pointer = { x: -20, y: -20 } }, onUse () { this.onEnable() }, onFrame (data) { this.handsfree.TweenMax.to(this.tween, 1, { x: window.outerWidth - this.handsfree.normalize(data.annotations.palmBase[0][0], this.handsfree.debug.$video.videoWidth * .75) * window.outerWidth + this.config.offset.x, y: this.handsfree.normalize(data.annotations.palmBase[0][1], this.handsfree.debug.$video.videoHeight * .75) * window.outerHeight - window.outerHeight * .5 + this.config.offset.y, overwrite: true, ease: 'linear.easeNone', immediate: true }) this.$pointer.style.left = `${this.tween.x}px` this.$pointer.style.top = `${this.tween.y}px` data.pointer = { x: this.tween.x, y: this.tween.y } }, /** * Toggle pointer */ onDisable() { this.$pointer?.classList.add('handsfree-hidden') } }