Live data from Hacker News

HTML Slides with notes

nbd.neocities.org

1–10 of 46 posts

Re: HTML Slides with notes

#2
Could add clicker support (which I have done previously). Note however that clickers vary between Up/Down and PgUp/PgDown. Enabling the former was potentially annoying if you like to use the arrow keys to scroll, so I made that configurable. Alternatively you configure mappings per device outside the browser.

Re: HTML Slides with notes

#5

This is really cute! I have a special spot in my heart for tools that do a good job of explaining themselves using their own outputs. I wonder how hard it would be to add the cute old PowerPoint style transitions using CSS

Not too hard depending on the level of jankiness you're willing to endure.

Screen capture API > full screen canvas element > css animated clip mask and opacity

Re: HTML Slides with notes

#6

  (i = slide.nextElementSibling)?.className == "slidenote" ? i : slide
  ]),
An alternative approach:

  slide.querySelector(":scope+.slidenote") ?? slide
(|| would work just as well as ??, but ?? feels more appropriate.)

Re: HTML Slides with notes

#10
post #2

Could add clicker support (which I have done previously). Note however that clickers vary between Up/Down and PgUp/PgDown. Enabling the former was potentially annoying if you like to use the arrow keys to scroll, so I made that configurable. Alternatively you configure mappings per device outside the browser.

I find it infuriating when clickers say they send page up/down but actually send regular up/down key events.
Post reply on HN