Minor updates
Changed invert to naturalSwipe Removed invert rule from index.html Ensured that left/right swipes only work with 1 hand present modified: index.html modified: plugin/leap/leap.js
This commit is contained in:
parent
70cade3732
commit
0e7bc4091e
@ -359,9 +359,6 @@ function linkify( selector ) {
|
|||||||
progress: true,
|
progress: true,
|
||||||
history: true,
|
history: true,
|
||||||
center: true,
|
center: true,
|
||||||
leap: {
|
|
||||||
invert : true
|
|
||||||
},
|
|
||||||
|
|
||||||
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
|
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
|
||||||
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
|
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
|
||||||
|
@ -25,7 +25,7 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re
|
|||||||
lastGesture = 0,
|
lastGesture = 0,
|
||||||
config = Reveal.getConfig().leap ||
|
config = Reveal.getConfig().leap ||
|
||||||
{
|
{
|
||||||
invert: false
|
naturalSwipe: true
|
||||||
},
|
},
|
||||||
now;
|
now;
|
||||||
|
|
||||||
@ -43,20 +43,20 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re
|
|||||||
|
|
||||||
|
|
||||||
if ( gesture.speed > 1000 && gesture.state === 'start' && gesture.type === 'swipe' ) {
|
if ( gesture.speed > 1000 && gesture.state === 'start' && gesture.type === 'swipe' ) {
|
||||||
if( frame.fingers.length > 1 ) {
|
if( frame.hands.length === 1 && frame.fingers.length > 1 ) {
|
||||||
if ( Math.abs(x) > Math.abs(y) ) {
|
if ( Math.abs(x) > Math.abs(y) ) {
|
||||||
if ( x > 0 ) {
|
if ( x > 0 ) {
|
||||||
config.invert ? Reveal.left() : Reveal.right();
|
config.naturalSwipe ? Reveal.left() : Reveal.right();
|
||||||
} else {
|
} else {
|
||||||
config.invert ? Reveal.right() : Reveal.left();
|
config.naturalSwipe ? Reveal.right() : Reveal.left();
|
||||||
}
|
}
|
||||||
|
|
||||||
lastGesture = now;
|
lastGesture = now;
|
||||||
} else {
|
} else {
|
||||||
if ( y > 0 ) {
|
if ( y > 0 ) {
|
||||||
config.invert ? Reveal.down() : Reveal.up();
|
config.naturalSwipe ? Reveal.down() : Reveal.up();
|
||||||
} else {
|
} else {
|
||||||
config.invert ? Reveal.up() : Reveal.down();
|
config.naturalSwipe ? Reveal.up() : Reveal.down();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user