This code is intended for personal use, however if you find it useful, please consider donating!
jquery-based slideshow.
Example Implementation:
$('#slideshow').pureslide({
images:[
'<img src="image.png" width="600" height="400" />',
'<img src="image.png" width="600" height="400" />',
'<img src="image.png" width="600" height="400" />',
'<img src="image.png" width="600" height="400" />',
],
maxX:670,
prevArrow:"go-previous.png",
nextArrow:"go-next.png",
autoMillis:5000,
stopAutoOnClick:true,
pauseAutoOnHover:true
});
The maximum size the slideshow will size to, regardless of the size of any inner images. 0 default, 0 disable. fitparent
Force the maxX and maxY values to fit the parent element of the slideshow. defaults to false. prevArrow and nextArrow
Path to images to use for the scroll arrows. "go-previous.png" and "go-next.png" default. autoMillis
Amount of time in milliseconds before the slideshow will progress on its own. 0 default, 0 disable. stopAutoOnClick
If set to true, then clicking manually to move the slideshow will turn off automatic advancement afterwards. defaults to false. pauseAutoOnHover
If set to true, then hovering the mouse over an image in the slideshow will prevent it from progressing automatically, and will resume when no longer hovered. defaults to false.
