Skip to content

Commit 6e14dc9

Browse files
feat(html): pause HTML slides with SPACE key (#539)
* feat(html): pause HTML slides with `SPACE` key Pressing <kbd>SPACE</kbd> key now pauses the slides, instead of skipping it. * chore(fmt): auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 4a40039 commit 6e14dc9

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
view is always available. Previously, it was only included if the slides
1818
had notes.
1919
[#538](https://github.com/jeertmans/manim-slides/pull/538)
20-
20+
- Pressing <kbd>SPACE</kbd> key now pauses the slides, instead of skipping it.
21+
Previously, it was not possible to pause HTML slides, which can be very annoying
22+
when trying to explain something.
23+
[#539](https://github.com/jeertmans/manim-slides/pull/539)
24+
2125
(v5.5.0)=
2226
## [v5.5.0](https://github.com/jeertmans/manim-slides/compare/v5.4.2...v5.5.0)
2327

manim_slides/templates/revealjs.html

+17
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,23 @@
262262
// Time before the cursor is hidden (in ms)
263263
hideCursorTime: {{ hide_cursor_time }}
264264
});
265+
// Override SPACE to play / pause the video
266+
Reveal.addKeyBinding(
267+
{
268+
keyCode: 32,
269+
key: 'SPACE',
270+
description: 'Play / pause video'
271+
},
272+
() => {
273+
var currentVideos = Reveal.getCurrentSlide().slideBackgroundContentElement.getElementsByTagName("video");
274+
if (currentVideos.length > 0) {
275+
if (currentVideos[0].paused == true) currentVideos[0].play();
276+
else currentVideos[0].pause();
277+
} else {
278+
Reveal.next();
279+
}
280+
}
281+
);
265282
{% if one_file %}
266283
// Fix found by @t-fritsch and @Rapsssito on GitHub
267284
// see: https://github.com/hakimel/reveal.js/discussions/3362#discussioncomment-11733074.

0 commit comments

Comments
 (0)