diff options
author | Hakim El Hattab | 2013-04-27 18:32:56 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-04-27 18:32:56 -0400 |
commit | ed4a8b51c594fbbad0759b21677484911f077d51 (patch) | |
tree | 7ccedc231842e2cd5478435ca601e9ddff9cac08 /js/reveal.js | |
parent | 32736a791c3e56298e3359d58d9a5561eaa82a47 (diff) |
auto play/pause youtube video when entering/leaving slide (#388)
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index d321dde..82a0741 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1430,11 +1430,19 @@ var Reveal = (function(){ function startEmbeddedContent( slide ) { if( slide ) { + // HTML5 media elements toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { if( !el.hasAttribute( 'data-ignore' ) ) { el.play(); } } ); + + // YouTube embeds + toArray( slide.querySelectorAll( 'iframe[src*="youtube.com/embed/"]' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) ) { + el.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}', '*'); + } + }); } } @@ -1446,11 +1454,19 @@ var Reveal = (function(){ function stopEmbeddedContent( slide ) { if( slide ) { + // HTML5 media elements toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { if( !el.hasAttribute( 'data-ignore' ) ) { el.pause(); } } ); + + // YouTube embeds + toArray( slide.querySelectorAll( 'iframe[src*="youtube.com/embed/"]' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) { + el.contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}', '*'); + } + }); } } |