Ipywidget - page navigation

I am looking to add something like a page navigation to my Jupyter Notebook.
Basically, I have 100’s of images which I am loading into a grid of NxM InputWidget’s. I would like the user to be able to scroll through the “pages” of images.

I can create this myself using ipywidgets buttons, & inputs etc. but was wondering if there was already a better way to do this.

Below are some examples of what I mean. Many thanks
Screenshot 2022-12-06 at 11.22.14

There’s nothing in particular like that now: that the above post shows 6 different treatments, this suggests why it might not be appropriate to go in core, which is mostly made of HTML5 elements, where possible, which already have good usability features. Maybe the closest thing would a SelectionSlider or SelectionRangeSlider? I’ve used the latter when showing a lot of images, along with controls for the height of the image (so they stack nicely), as one can dial in how many things would be visible.

Thank you for that @bollwyvl . As I had expected, but just wanted to check. Appreciate the reply