I have a website with a large number of images on one large page.
The easiest would be a Script, which I could include, which automatically scans the same page and uses all images larger than 100 pixels to create a slide show gallery from them.
Does anyone know such a lightweight script that needs any programming skills?
I found this for a start:
jQuery get all images within an element exceeding a certain size
To get all the larger images, you can use something like this:
var allImages = $('img', yourDivElement) var largeImages = allImages.filter(function(){ return ($(this).width() > 70) || ($(this).height() > 70) })
Update:
After several studies, I found this the most suitable: Fancybox Gallery
It should be implemented on this page:
http://www.kathrinhoffmann.com/
javascript jquery image-gallery
rubo77
source share