diff options
author | Razvan Caliman | 2015-09-19 15:31:49 +0100 |
---|---|---|
committer | Razvan Caliman | 2015-09-19 15:55:48 +0100 |
commit | 8bbc2971acafafdb6194efe372663d8ec59b6f0a (patch) | |
tree | a96b81f554a6ae988442ddb4b419669938ba86a7 /js/reveal.js | |
parent | a151df54be33894a4b06c3a0bc9b51524db77e2c (diff) |
add option to mute background videos
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index a768d68..f6b2c19 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2812,6 +2812,7 @@ var backgroundImage = slide.getAttribute( 'data-background-image' ), backgroundVideo = slide.getAttribute( 'data-background-video' ), backgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ), + backgroundVideoMuted = slide.hasAttribute( 'data-background-video-muted' ), backgroundIframe = slide.getAttribute( 'data-background-iframe' ); // Images @@ -2826,6 +2827,10 @@ video.setAttribute( 'loop', '' ); } + if( backgroundVideoMuted ) { + video.muted = true; + } + // Support comma separated lists of video sources backgroundVideo.split( ',' ).forEach( function( source ) { video.innerHTML += '<source src="'+ source +'">'; |