Question: Can jAlbum create four different slide images from an original image for output, each with a different output size?
Background: In order to cause the visitor as little internet traffic as possible, his browser should select, download and display the image from the offer that comes closest in dimension to his browser (device) window.
Concretely: Instead of using only one size previously defined in jAlbum (e.g. 2000x2000) as an image in "picture-01.html", as e.g. here:
<picture>
<img src="bild-01.webp" alt="picture 1" width="2016" height="1512">
</picture>
the browser should be offered this selection:
<picture>
<source media="(min-width:1500px)" srcset="bild-01-2000.webp" alt="Bild 1 width="2016" height="1512">
<source media="(min-width:1000px)" srcset="bild-01-1500.webp" alt="Bild 1 width="1500" height="1125">
<source media="(min-width:0500px)" srcset="bild-01-1000.webp" alt="Bild 1" width="1000" height="0750">
<source media="(min-width:0200px)" srcset="bild-01-0500.webp" alt="Bild 1" width="0500" height="0375">
<img src="bild-01-2000.webp" alt="Bild 1" width="2016" height="1512">
</picture>
The browser then selects only the image that is suitable for it.
This means more work for the webmaster, but considerably faster loading times for the visitor and good values in Google's PageSpeedTool, especially since about two-thirds of all internet traffic now takes place via smartphones.
For this case, at least three different sizes of each image have to be created with a program other than jAlbum and the content of the slide HTML file has to be changed accordingly by hand - a lot of work! See HTML source code in this example:
https://wiesweg.de/ja/beispiel3/index.html
I wish jAlbum could do this in one go. It seems to me that this requires "a bit" more programming from jAlbum - could the jAlbum skin experts manage this? That would be a big step forward.
Thanks for any advice or tips or further development of jAlbum.