How to have a fragment to both fade-in and highlight-red?
This one:
How to use Revealjs with Seminar Plugin
I am currently working on a presentation app for Notion and started to implement the Seminar plugin. I made the server run without any problem and opened the “room” to the presentation too. But what I dont understand, how I can add a participant.
Rules for using auto animate in reveal.js?
<script> import { onMount } from ‘svelte’; import Reveal from ‘reveal.js’; import ‘reveal.js/dist/reveal.css’; onMount(() => { Reveal.initialize(); }); </script> <div class=”reveal” style=”height: 300px; width: 200px; margin: 0 auto”> <div class=”slides”> <section data-auto-animate> <div style=”background-color: green” data-id=”a”> <p>test 1</p> <p>test 2</p> </div> </section> <section data-auto-animate> <div style=”background-color: yellow”> <p>test 3</p> <p>test 4</p> </div> <div style=”background-color: green” […]
Within reveal.js, I would appreciate help on how to pause or end background audio playback
Within reveal.js, I’m having issues pausing or ending ‘background’ audio playback. Within one of my first slides, I’m amending the tag with data-autoplay and data-ignore to ensure that it proceeds to play in the background past the current slide, however, I’d like to be able to end that audio after a set amount of slides. Ideally, a trigger class that I could add to the HTML of one of the later slides to end the track. Even being able to end ALL currently playing media would be fine.