Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sound transition with reveal.js

Tags:

reveal.js

I'm learning to use reveal.js and I find it very powerful. I wonder wether it's possible to make reveal play a sound at each slide transition. I made a presentation with the auto-sliding option on and it would be usefull to have a sound when the slide changes. Can someone help me ? Thanks

like image 204
Fabrice Lallemand Avatar asked Nov 14 '13 11:11

Fabrice Lallemand


1 Answers

You can use the data-autoplay attribute for this, it works for both video and audio elements. When this attribute is present on a media element inside of reveal.js that element will play/pause automatically as you enter/leave the slide it lives in.

<section>
  <audio data-autoplay src="yourAudioFile.mp3"></audio>
</section>

https://github.com/hakimel/reveal.js#embedded-media

like image 123
hakim Avatar answered Sep 22 '22 01:09

hakim