diff options
author | Hakim El Hattab | 2013-04-27 18:27:34 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-04-27 18:27:34 -0400 |
commit | 32736a791c3e56298e3359d58d9a5561eaa82a47 (patch) | |
tree | 0f71b4da0215f94c8890408a2327f56b9eae8e2c /js/reveal.js | |
parent | 18795c161f2ea7d01fdadb9cca4d95c52e76d3db (diff) |
auto play/pause html5 media when entering/leaving slide (#388)
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index c2f3722..d321dde 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1147,6 +1147,10 @@ var Reveal = (function(){ } } + // Handle embedded content + stopEmbeddedContent( previousSlide ); + startEmbeddedContent( currentSlide ); + updateControls(); updateProgress(); @@ -1420,6 +1424,38 @@ var Reveal = (function(){ } /** + * Start playback of any embedded content inside of + * the targeted slide. + */ + function startEmbeddedContent( slide ) { + + if( slide ) { + toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) ) { + el.play(); + } + } ); + } + + } + + /** + * Stop playback of any embedded content inside of + * the targeted slide. + */ + function stopEmbeddedContent( slide ) { + + if( slide ) { + toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) ) { + el.pause(); + } + } ); + } + + } + + /** * Reads the current URL (hash) and navigates accordingly. */ function readURL() { |