Is there a way to make an ajax slideshow like this?
Each slide contains an image and description and is loaded via ajax call.
I suppose an easy way for an author to make up such slideshow post is to use the following shortcode markup:
[slideshow]
[slide1]
<img src="photo1.jpg"/>
<p>desc 1</p>
[/slide1]
[slide2]
<img src="photo2.jpg"/>
<p>desc 2</p>
[/slide2]
[slide3]
<img src="photo3.jpg"/>
<p>desc 3</p>
[/slide3]
[/slideshow]
There is also one more idea that would make life of authors even easier:
<img src="photo1.jpg">
<p>desc 1</p>
<!-- nextpage -->
<img src="photo2.jpg">
<p>desc 2</p>
<!-- nextpage -->
<img src="photo3.jpg">
<p>desc 3</p>
How can I achive anything like this?