diff options
author | Hakim El Hattab | 2013-08-16 09:31:13 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-16 09:31:13 -0400 |
commit | fecee266b680c01d1a89ab754bb25a81fd1c35be (patch) | |
tree | 0d9bf5140778a8e6776d2b60555b8faac89c1c5a /js/reveal.js | |
parent | 2bed5833ca87d7f127513acabee05971277e0f94 (diff) |
start work on logic for fitting an element to remaining slide height #244 #490 #561
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index 85e238a..acd5623 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -722,6 +722,56 @@ var Reveal = (function(){ } + function getComputedCSSProperty( element, prop ) { + + if( window.getComputedStyle ) { + return window.getComputedStyle( element )[ prop ]; + } + else { + return element.currentStyle ? element.currentStyle( prop ) : element.style[ prop ]; + } + + } + + /** + * Returns the remaining height within the parent element + * of the target after taking out the height of all + * siblings. + * + * remaining height = [parent height] - [ siblings height] + */ + function getRemainingHeight( element ) { + + var height = 0; + + if( element ) { + var parent = element.parentNode; + var siblings = parent.childNodes; + + height = config.height; + + // Remove the height of each sibling + toArray( siblings ).forEach( function( sibling ) { + + if( typeof sibling.offsetHeight === 'number' && sibling !== element ) { + + var marginTop = parseInt( getComputedCSSProperty( sibling, 'margin-top' ), 10 ); + var marginBottom = parseInt( getComputedCSSProperty( sibling, 'margin-bottom' ), 10 ); + + console.log( marginTop, marginBottom ); + + height -= sibling.offsetHeight + marginTop + marginBottom; + + } + + } ); + + } + + return height; + + } + /** * Checks if this instance is being used to print a PDF. */ @@ -1017,6 +1067,13 @@ var Reveal = (function(){ updateProgress(); + // Handle sizing of elements with the 'remaining-height' class + toArray( dom.slides.querySelectorAll( 'section > .remaining-height' ) ).forEach( function( element ) { + + element.style.height = getRemainingHeight( element ) + 'px'; + + } ); + } } |