Strating from this nice example - https://codepen.io/SaijoGeorge/pen/LxeGgY - ended up in a small SPA, which allows you do drag your local images to the gallery with a ken burns effect. Enjoy!
ArrowRight - Next Image
ArrowLeft - Previous Image
i - Show/Hide info and configuration box
n - Show/Hide filename
space - Start/Stop slideshow (animation continues)
b - Black-And-White filter
- Add class
autoplay
to body:
<body class="autoplay">
- Insert images in
#image-wrap
:
<div id="image-wrap">
<img src="1.jpg">
<img src="2.jpg">
…
</div>
- Optional: Add audio file:
<audio id="audio-music" controls loop src="music.mp3"></audio>
See the example index.php
file for server side usage.
MIT