Hej,
Jeg er ikke meget bevendt når det kommer til javascripts, faktisk er
jeg kun lidt bevendt i html og css. Nu er det sådan at jeg rigtig godt
kunne tænke mig at lave et link til en samling billeder der skal vises
ved hjælp af slimbox2 og jquery, problemet er at jeg ikke aner hvordan
jeg udfører det her i et stykke html:
http://code.google.com/p/slimbox/wiki/jQueryAPI#Multiple_images
----------------------------------------------
Multiple images
Call the jQuery.slimbox() function with the following parameters:
jQuery.slimbox(images, startImage, options);
* images is mandatory, it's an array of arrays. The main array
contains one array for each image. The second-level arrays contain the
image URL as a mandatory first element, and the image description as
an optional second element. Example, for 2 images: [["image1.jpg"],
["image2.jpg", "description2"]]
* startImage is mandatory, it's the zero-based index of the image
that you want to show first when Slimbox opens. 0 is the first image
of the array, 1 is the second, etc. Of course, this value must be
smaller than the size of the main array. Most of the time, you will
use 0.
* options is optional, it's the same parameter as the one
described above for displaying a single image.
Examples:
jQuery.slimbox([["cat.jpg", "Nice cat"], ["dog.jpg"]], 0);
jQuery.slimbox([["left.jpg"], ["middle.jpg"], ["right.jpg"]], 1,
{loop: true});
----------------------------------------------
- Jeg kan faktisk ikke finde nogle referencer der arbejder med det
her. Jeg kan sagtens stykke de arrays som han beskriver sammen men
hvordan hulan smider jeg det ind i min html?
Jeg har valgt slimbox fordi det skulle være den hurtigste og mest
kompatible lighbox klon, men hvis der er andre forslag tager jeg gerne
imod dem.
Mvh.
Lauge