summaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-08-18 17:53:41 -0400
committerHakim El Hattab2013-08-18 17:53:41 -0400
commit04c4fa49b896e63b6679023dd16c93494af342eb (patch)
tree070a9f2728541c6ab09cc7514c38b17efc1486fa /js/reveal.js
parent6f1dfee81b57e138c8447d43aa5a2c2d55b1c4ce (diff)
revised remaining height layout logic
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js40
1 files changed, 34 insertions, 6 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 9c8b4b0..257c8c2 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -1014,12 +1014,8 @@ var Reveal = (function(){
dom.slides.style.width = slideWidth + 'px';
dom.slides.style.height = slideHeight + 'px';
- // Handle sizing of elements with the 'remaining-height' class
- toArray( dom.slides.querySelectorAll( 'section > .remaining-height' ) ).forEach( function( element ) {
-
- element.style.height = getRemainingHeight( element, ( slideHeight - ( slidePadding * 2 ) ) ) + 'px';
-
- } );
+ // Layout the contents of the slides
+ layoutSlideContents( config.width, config.height, slidePadding );
// Determine scale of content to fit within available space
scale = Math.min( availableWidth / slideWidth, availableHeight / slideHeight );
@@ -1072,6 +1068,38 @@ var Reveal = (function(){
}
/**
+ * Applies layout logic to the contents of all slides in
+ * the presentation.
+ */
+ function layoutSlideContents( width, height, padding ) {
+
+ // Handle sizing of elements with the 'remaining-height' class
+ toArray( dom.slides.querySelectorAll( 'section > .remaining-height' ) ).forEach( function( element ) {
+
+ // Determine how much vertical space we can use
+ var remainingHeight = getRemainingHeight( element, ( height - ( padding * 2 ) ) );
+
+ // Consider the aspect ratio of media elements
+ if( /(img|video)/gi.test( element.nodeName ) ) {
+ var nw = element.naturalWidth,
+ nh = element.naturalHeight;
+
+ var es = Math.min( width / nw, remainingHeight / nh );
+
+ element.style.width = ( nw * es ) + 'px';
+ element.style.height = ( nh * es ) + 'px';
+
+ }
+ else {
+ element.style.width = width + 'px';
+ element.style.height = remainingHeight + 'px';
+ }
+
+ } );
+
+ }
+
+ /**
* Stores the vertical index of a stack so that the same
* vertical slide can be selected when navigating to and
* from the stack.