- Telephone: +1 959 552 5963
- FAX: +1 959 552 5963
- E-mail: mail@demolink.org
Simple Gallery
<div class="wrapper" id="galleryfic_gallery">
<div id="gallery" class="content">
<div class="slideshow-container">
<div id="loading" class="loader"></div>
<div id="slideshow" class="slideshow"></div>
</div>
</div>
<div id="thumbs" class="navigation">
<ul class="thumbs noscript">
<li><a class="thumb" href="images/slide-1.jpg"><img src="images/thumbs/thumb1.jpg" alt=""></a></li>
<li><a class="thumb" href="images/slide-2.jpg"><img src="images/thumbs/thumb2.jpg" alt=""></a></li>
..........
<li><a class="thumb" href="iimages/slide-12.jpg"><img src="images/thumbs/thumb12.jpg" alt=""></a></li>
</ul>
</div>
</div>
In order to create a gallery you will need:
-
First we need to create HTML markup for the gallery. The elements represented here are optional. Each <div> element defines the following gallery parts:
#controls – adds gallery navigation block;<div id="loading"></div> <div id="slideshow"></div> <div id="caption"></div> <div id="thumbs"> ... </div>
#loading – adds a block that displays a spinner image till gallery images are being loaded;
#slideshow – adds big image block;
#caption – adds image description block;
#thumbs – thumbnail images block. - Then we build HTML markup for the #thumbs block:
<div id="thumbs"> <ul class="thumbs noscript"> <li> <a class="thumb" name="name" href="path/to/slide" title="title"> <img src="path/to/thumbnail" alt="your image title"> </a> </li> ... (repeat for every image in the gallery) </ul> </div>
- The link with .thumb class contains the path to the large image. Additionally you can add title and alt parameters.
- In order to add a gallery item you need to duplicated an existing <li> element (like what you see above).