body.html 497 B

123456789
  1. <!-- This partial is included before the end of the body tag for only the 'example' presentation -->
  2. <!-- A common use would be to add JavaScript to the page to customize interactions -->
  3. <!-- The Reveal.js JavaScript API is located at https://github.com/hakimel/reveal.js/#api -->
  4. <script type="text/javascript">
  5. // Log the current slide to the console when it changes
  6. Reveal.addEventListener('slidechanged', function(event) {
  7. console.log("🎞️ Slide is now " + event.indexh);
  8. });
  9. </script>