This is a simple jquery implementation of JonDesign’s Smooth SlideShow Library . It aims only to replicate the timed mode feature of jon’s plugin.
This is an early alpha release and it works only on firefox now in Beta and it works with both firefox and IE. check out the demo here. You can download the plugin from http://code.google.com/p/akslideshow/downloads/list .
It has been tested with jquery 1.2.3.
How To Use It
- first include the stylesheet
<link href="akslide.css" rel="stylesheet" type="text/css" />
- now include the jQuery and akslideshow.js file
<script src="jquery-1.2.3.min.js" type="text/javascript"> </script> <script src="jquery.akslideshow.js" type="text/javascript"> </script>
- We will initialize the gallery now, for that we need to pass three parameters
- an array with list of image paths to be used for slideshow
var imglist=new Array('1.jpg','2.jpg','3.jpg','4.jpg','5.jpg');
- two more arrays with description and title in same order in which they need to be displayed.
var caption=new Array('A Dove Amongst the Host?','Natura','the same blooming tree again','Refreshed','P1000018'); var titles=new Array('seeks2dream','fabrizio.pincelli','aatual666','seeks2dream','munness');
- and a code to initialize the slideshow
$(function(){ $('#gallery').initSlideShow({img:imglist,cap:caption,title:titles}); });
- an array with list of image paths to be used for slideshow
- finally we need to have a div with id specified above for holding the slideshow.
<div id="gallery" >HERE GALLERY WILL COME</div>
Still To Do
make it work in IE 6 and abovesliding needs to be smooth- center the image properly, instead of left or right alignment
Hey, nice tool, but I am looking for JonDesign´s smopthGALLERY in jQuery. Do you have any Information about it, please mail me! Thx, Ben
I just can’t find any link on this page to the actual demo of your slideshow?
@Emanu link to demo is http://amiworks.co.in/akslideshowdemo/ it is given in the second paragraph.