aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2015-09-25 09:41:14 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2015-09-25 09:41:14 +0200
commit8a1603f4d99d4ed680df9667afe664bbad36e978 (patch)
treef4345aad9bcc71646296eb2402bb22152c3c7edb
parent9bcd1484bc583ffe015c5296e6a42c17f578ae49 (diff)
parenta151df54be33894a4b06c3a0bc9b51524db77e2c (diff)
downloadfosdem-2018-presentation-8a1603f4d99d4ed680df9667afe664bbad36e978.tar
fosdem-2018-presentation-8a1603f4d99d4ed680df9667afe664bbad36e978.tar.gz
Merge branch 'dev' of github.com:hakimel/reveal.js into dev
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9011605..d86c984 100644
--- a/README.md
+++ b/README.md
@@ -316,6 +316,13 @@ Reveal.configure({
});
```
+### Touch Navigation
+
+You can swipe to navigate through a presentation on any touch-enabled device. Horizontal swipes change between horizontal slides, vertical swipes change between vertical slides. If you wish to disable this you can set the `touch` config option to false when initializing reveal.js.
+
+If there's some part of your content that needs to remain accessible to touch events you'll need to highlight this by adding a `data-prevent-swipe` attribute to the element. One common example where this is useful is elements that need to be scrolled.
+
+
### Lazy Loading
When working on presentation with a lot of media or iframe content it's important to load lazily. Lazy loading means that reveal.js will only load content for the few slides nearest to the current slide. The number of slides that are preloaded is determined by the `viewDistance` configuration option.