This extremely lightweight JavaScript image gallery and slideshow script clocks in under 3kb packed and includes a number of cool features. Recently I was looking for a nice existing script for a client project. I wanted something elegant, simple and lightweight. What I found were a number of scripts built on JavaScript frameworks and a few others that really lacked any appealing interface or were over 30kb. I challenged myself to build a full-featured slideshow gallery under 4kb. Hopefully I will be add a few more features to the script soon and make it a little mode user-friendly.
Here is an example of the markup…
04 | < a href = "javascript:slideShow.nav(-1)" id = "previmg" ></ a > |
05 | < a href = "javascript:slideShow.nav(1)" id = "nextimg" ></ a > |
08 | < div id = "thumbwrapper" > |
11 | < li value = "1" >< img src = "thumbs/1.jpg" alt = "" /></ li > |
12 | < li value = "2" >< img src = "thumbs/2.jpg" alt = "" /></ li > |
13 | < li value = "3" >< img src = "thumbs/3.jpg" alt = "" /></ li > |
14 | < li value = "4" >< img src = "thumbs/4.jpg" alt = "" /></ li > |
15 | < li value = "5" >< img src = "thumbs/5.jpg" alt = "" /></ li > |
The list section is the important element to the gallery. Each li has a value property that is set to the name of the full-size image. The interface is very flexible and can easily be altered in the HTML and CSS.
You will also need to setup the variables below and include the slideshow JavaScript…
2 | var imgdir = 'fullsize' ; |
This script isn’t completely polished yet but I wanted to go ahead and get it out there for anyone that can put it to use. It has been tested in all major browsers and is available free of charge for both personal or commercial projects under the
creative commons license. Community support is
available here. Paid support is also available,
contact me for details.