From dbcbc7aa699452f77d1c4561318b72180b3273af Mon Sep 17 00:00:00 2001 From: Rory Hardy Date: Mon, 5 Aug 2013 22:41:04 -0500 Subject: Added pointer and tweaked the code modified: css/reveal.css modified: css/reveal.min.css modified: plugin/leap/leap.js --- plugin/leap/leap.js | 78 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 64 insertions(+), 14 deletions(-) (limited to 'plugin/leap') diff --git a/plugin/leap/leap.js b/plugin/leap/leap.js index 9737529..ac1c26e 100644 --- a/plugin/leap/leap.js +++ b/plugin/leap/leap.js @@ -22,27 +22,75 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a 0 ) { - var gesture = frame.gestures[0], - x = gesture.direction[0], - y = gesture.direction[1]; + var gesture = frame.gestures[0]; - - if ( gesture.speed > 1000 && gesture.state === 'start' && gesture.type === 'swipe' ) { - if( frame.hands.length === 1 && frame.fingers.length > 1 ) { + // One hand gestures + if( frame.hands.length === 1 ) { + // Swipe gestures. 2+ fingers. + if ( frame.fingers.length > 1 && gesture.speed > 1000 && gesture.state === 'start' && gesture.type === 'swipe' ) { + var x = gesture.direction[0], + y = gesture.direction[1]; + + // Left/right swipe gestures if ( Math.abs(x) > Math.abs(y) ) { if ( x > 0 ) { config.naturalSwipe ? Reveal.left() : Reveal.right(); } else { config.naturalSwipe ? Reveal.right() : Reveal.left(); } + // Up/down swipe gestures } else { if ( y > 0 ) { config.naturalSwipe ? Reveal.down() : Reveal.up(); @@ -50,10 +98,12 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a 0 ) { - Reveal.toggleOverview(); - } + } + // Two hand gestures + } else if( frame.hands.length == 2 ) { + // All upwards 2 hand gestures = toggle overview + if ( gesture.direction[1] > 0 ) { + Reveal.toggleOverview(); } } } -- cgit v1.2.3