-
I've guessed (thanks to this commit 336) that reverse animation aren't available for html. My question is : Why ? Thanks a lot for your job, Hugo Denim. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi Hugo, thanks for your question! #336 didn't do anything about supporting reversed animations inside HTML slides: it only removed them from the output folder as they were never used. The support of reversed animation is something non-standard, and it is only provided by the default (i.e., You could raise an issue on their repository (https://github.com/hakimel/reveal.js), but I doubt this is a feature they might want to add. However, something we could do is include inside the HTML template a JS script that listens to keystrokes (e.g., with https://revealjs.com/keyboard/) and modifies the background video to include the reversed animation instead. I'll mark this a nice feature to have, but I don't have much time to work on this at the moment, but feel free to give it a try (or anybody else)! |
Beta Was this translation helpful? Give feedback.
Hi Hugo, thanks for your question!
#336 didn't do anything about supporting reversed animations inside HTML slides: it only removed them from the output folder as they were never used.
The support of reversed animation is something non-standard, and it is only provided by the default (i.e.,
manim-slides present ...
) viewer, because I wrote it. I didn't write RevealJS (theYou could raise an issue on their repository (https://github.com/hakimel/reveal.js), but I doubt this is a feature they might want to add.
However, something we could do is include inside the HTML template a JS script that listens to keystrokes (e.g., with https://revealjs.com/keyboard/) and modifies the background video…