diff options
author | Rory Hardy | 2013-08-06 00:11:58 -0500 |
---|---|---|
committer | Rory Hardy | 2013-08-06 00:11:58 -0500 |
commit | 1d895bad612c218f125c43b8195ab475be625bf0 (patch) | |
tree | 4f60a2356bba499820be387d42c702de37b86a43 /README.md | |
parent | 36a4f56f6253db7d2624686909979f97690776f4 (diff) |
Docs and updates
Updated README.md to mention the leap plugin.
Removed leap settings from index.html.
Better variable naming in leap.js
modified: README.md
modified: index.html
modified: plugin/leap/leap.js
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 42 |
1 files changed, 42 insertions, 0 deletions
@@ -625,6 +625,48 @@ Reveal.initialize({ }); ``` +## Leap Motion +The Leap Motion plugin lets you utilize your [Leap Motion](https://www.leapmotion.com/) device to control basic navigation of your presentation. The gestures currently supported are: + +##### 1 hand + 1 finger +* Pointer — Point to anything on screen. Move your finger past the device to expand the pointer. + +##### 1 hand + 2 or more fingers + +* Left +* Right +* Up +* down + +Navigate through your slides. See config options to invert movements. + +##### 2 hands +* Up + +Toggle the overview mode. Do it a second time to exit the overview. + +#### Config Options +You can edit the following options: +* naturalSwipe: Defaults to true. Swipe as though you were touching a touch screen. Set to false to invert. +* pointerSize: Defaults to 15. The minimum height and width of the pointer. +* pointerColor: Defaults to #00aaff. The color of the pointer. +* pointerOpacity: Defaults to 0.75. The opacity of the pointer. +* gestureDelay: Defaults to 500. How long to delay between gestures in milliseconds. + +Example configuration: +```js +Reveal.initialize({ + // other options + leap: { + naturalSwipe : false, // Invert swipe gestures + pointerOpacity : 0.5, // Set pointer opacity to 0.5 + pointerColor : '#d80000' // Red pointer + } + + // Optional libraries used to extend on reveal.js + { src: 'plugin/leap/leap.js', async: true } +``` + ## Installation The **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features as well as the development tasks needed to make changes to the source. |