|
@@ -152,6 +152,9 @@ Reveal.initialize({
|
|
|
// Stop auto-sliding after user input
|
|
|
autoSlideStoppable: true,
|
|
|
|
|
|
+ // Use this method for navigation when auto-sliding
|
|
|
+ autoSlideMethod: Reveal.navigateNext,
|
|
|
+
|
|
|
// Enable slide navigation via mouse wheel
|
|
|
mouseWheel: false,
|
|
|
|
|
@@ -297,6 +300,8 @@ You can also override the slide duration for individual slides and fragments by
|
|
|
</section>
|
|
|
```
|
|
|
|
|
|
+To override the method used for navigation when auto-sliding, you can specify the ```autoSlideMethod``` setting. To only navigate along the top layer and ignore vertical slides, set this to ```Reveal.navigateRight```.
|
|
|
+
|
|
|
Whenever the auto-slide mode is resumed or paused the ```autoslideresumed``` and ```autoslidepaused``` events are fired.
|
|
|
|
|
|
|