Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 693 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 693 Bytes

wwslideshow

A responsive-friendly javascript slideshow

Usage Example

Just include the plugin in your site and call the function in your main javascript file.

Basic Example (default options):

$("#imagecontainer").wwslideshow();

You can customize the default parameters within the function:

Slower transition:

$("#imagecontainer").wwslideshow({delay: 4000, speed: 2000});

Default options

autoplay: true,  	
random: true,		// randomize the image order
startindex: null, 
delay: 2000,		// delay between slides
speed: 1000,		// transition speed
paginator: null,	// selector
nums: false,		// set the selectors to numbers
debug: false