aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorHakim El Hattab2013-04-06 12:18:25 -0400
committerHakim El Hattab2013-04-06 12:18:25 -0400
commita400dd0c705db7510aeebaa03539bd199edd6ac6 (patch)
treee3a57b44f13131fdbe8f59191abed4b326d0e7db /README.md
parent308987ee31a0774d4dbfb45df8e9b2b8ed397089 (diff)
support for transition speed settings (closes #392)
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/README.md b/README.md
index 72405d7..82c6655 100644
--- a/README.md
+++ b/README.md
@@ -100,7 +100,10 @@ Reveal.initialize({
rollingLinks: true,
// Transition style
- transition: 'default' // default/cube/page/concave/zoom/linear/fade/none
+ transition: 'default', // default/cube/page/concave/zoom/linear/fade/none
+
+ // Transition speed
+ transitionSpeed: 'default', // default/fast/slow
});
```
@@ -268,6 +271,10 @@ The global presentation transition is set using the ```transition``` config valu
<section data-transition="zoom">
<h2>This slide will override the presentation transition and zoom!</h2>
</section>
+
+<section data-transition-speed="fast">
+ <h2>Choose from three transition speeds: default, fast or slow!</h2>
+</section>
```
Note that this does not work with the page and cube transitions.