突破人机交互的界限, 即将到来
Breaking through the boundaries of human-computer interaction is coming
Base Action
-
fist -
hand_open -
indexFinger_point
Normal Action
-
hand_slide_right -
hand_slide_left
Advance Action
-
+
hands_expansion -
+
hands_fold -
+
hands_anticlockwise -
+
hands_clockwise -
+
hands_shutdown
How to run custom javascript code
window.addEventListener('message', (msg)=>{
switch(msg.data.data.handStatus){
case 'hand_slide_right':
//do something
break;
case 'hand_slide_left':
//do something
break;
}
}, false);
window.parent.postMessage({type:"MODULE_INIT", moduleId:"handControlModule"}, "*");
