diff options
author | Hakim El Hattab | 2013-04-06 12:18:25 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-04-06 12:18:25 -0400 |
commit | a400dd0c705db7510aeebaa03539bd199edd6ac6 (patch) | |
tree | e3a57b44f13131fdbe8f59191abed4b326d0e7db /README.md | |
parent | 308987ee31a0774d4dbfb45df8e9b2b8ed397089 (diff) |
support for transition speed settings (closes #392)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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. |