---
title: "akslideshow"
url: https://thecancerus.com/akslideshow/
date: 2008-03-18
modified: 2008-03-18
author: "ican"
description: "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..."
categories:
  - "jquery"
tags:
  - "akslideshow"
  - "jquery plugin"
  - "slideshow plugin"
  - "smooth slideshow"
word_count: 212
---

# akslideshow

This is a simple jquery implementation of [JonDesign's Smooth SlideShow Library ](http://smoothslideshow.jondesign.net/) . 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](http://amiworks.co.in/akslideshowdemo/). You can download the plugin from [http://code.google.com/p/akslideshow/downloads/list](http://code.google.com/p/akslideshow/downloads/list) .[
](http://amiworks.co.in/akslideshowdemo/)

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});

});

- finally we need to have a div with id specified above for holding the slideshow.
<div >HERE GALLERY WILL COME</div>

### Still To Do

- make it work in IE 6 and above
- sliding needs to be smooth
- center the image properly, instead of left or right alignment