diff options
author | Hakim El Hattab | 2013-06-04 20:15:19 +0200 |
---|---|---|
committer | Hakim El Hattab | 2013-06-04 20:15:19 +0200 |
commit | 15f24f7a9a4b9629b3d6054bd0ef199eaee8c4c6 (patch) | |
tree | 4abc3a7afc0d4b0397a742f22f6983636ed08583 /js/reveal.js | |
parent | c11e8f624f34729363cc35d5a083476c356e824a (diff) |
linear sliding transition option for full page backgrounds (#453)
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index 6e5f9e4..3d6e2da 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -79,6 +79,9 @@ var Reveal = (function(){ // Transition speed transitionSpeed: 'default', // default/fast/slow + // Transition style for full page slide backgrounds + backgroundTransition: 'default', // default/linear + // Script dependencies to load dependencies: [] }, @@ -415,6 +418,7 @@ var Reveal = (function(){ dom.wrapper.classList.add( config.transition ); dom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed ); + dom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition ); if( dom.controls ) { dom.controls.style.display = ( config.controls && dom.controls ) ? 'block' : 'none'; |