Browse Source

start work on logic for fitting an element to remaining slide height #244 #490 #561

embed
Hakim El Hattab 11 years ago
parent
commit
fecee266b6
  1. 57
      js/reveal.js
  2. 4
      js/reveal.min.js

57
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. * Checks if this instance is being used to print a PDF.
*/ */
@ -1017,6 +1067,13 @@ var Reveal = (function(){
updateProgress(); 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';
} );
} }
} }

4
js/reveal.min.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save