summaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-06-18 08:37:06 -0400
committerHakim El Hattab2013-06-18 08:37:06 -0400
commiteb5b39e6850d5c7067a0cb9a113b60617c10f9d8 (patch)
tree222b794aeaceeaee35c54f7b8ebf1980dfce2673 /js/reveal.js
parentb0b6c756295cefb66b93a5f2d807eab2e43eb8a4 (diff)
support for background transition overrides
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 8015244..70c782c 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -274,7 +274,8 @@ var Reveal = (function(){
backgroundSize: slide.getAttribute( 'data-background-size' ),
backgroundColor: slide.getAttribute( 'data-background-color' ),
backgroundRepeat: slide.getAttribute( 'data-background-repeat' ),
- backgroundPosition: slide.getAttribute( 'data-background-position' )
+ backgroundPosition: slide.getAttribute( 'data-background-position' ),
+ backgroundTransition: slide.getAttribute( 'data-background-transition' )
};
var element = document.createElement( 'div' );
@@ -295,6 +296,7 @@ var Reveal = (function(){
if( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;
if( data.backgroundRepeat ) element.style.backgroundRepeat = data.backgroundRepeat;
if( data.backgroundPosition ) element.style.backgroundPosition = data.backgroundPosition;
+ if( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );
container.appendChild( element );