Web Basics
Image Slideshow
Prev, next, dots and auto-play — stepping through a list with an index.
A slideshow that advances on its own, pauses when you hover, and lets you jump around with buttons and dots. The whole idea is one number — the current index — and wrapping it around the ends.
What's inside
- Prev / next buttons and clickable dots
- Auto-advance that pauses on hover
- Wrapping around the ends with modulo
- Slides drawn with CSS — no image files to download
- Light & dark mode, no dependencies
Quickstart
$ curl -LO https://devai.io/downloads/image-slideshow.zip$ unzip image-slideshow.zip && cd image-slideshow$ open index.html # or just double-click the file
about this tutorial
A devai.io starter tutorial — learn to walk through a list and show one item at a time.
More in Web Basics
view allWeb Basics
Tip Calculator
Your first interactive page: type a bill, see the tip update live.
HTMLCSSJavaScript
View template zip + preview
Web Basics
To-Do List
Keep a list, tick things off, and have it still be there after a refresh.
HTMLCSSJavaScriptlocalStorage
View template zip + preview
Web Basics
Countdown Timer
Count down to any moment — days, hours, minutes, seconds, ticking live.
HTMLCSSJavaScriptDates
View template zip + preview