Introduction

The AJAX slideshow application allows you to view images in a directory that can be accessed via HTTP as a slideshow.

Demo

To view the AJAX slideshow in action, see this demo.

What does it do?

For example, suppose that your browser shows you the following contents of a certain directory at a certain URL:

example


Then, by adding the following snippet to your HTML page,

<script>
function processResponse(data)
{
        load_slides( data );
            start_slides();
                  
}

ajaxSlideshowService.getImages(processResponse, "http://finance.xs4all.nl/images/ajax-slideshow-demo/" );
</script>

you will see the pictures as a slideshow, possibly configured with the so-called Ken Burns effects, see also the demo.