var zoomSliderOptions =
{
sliderId: "zoom-slider",
slideInterval: 5000,
autoAdvance: true,
captionOpacity: 0.5,
captionEffect: "rotate",
thumbnailsWrapperId: "thumbs",
thumbEffect: 0.5,
license:"mylicense"
};
var zoomSlider=new ZoomSlider(zoomSliderOptions);
Create Slider Dynamically
If your slider HTML will not be available on page load, and you want to create the slider dynamically by a client event or Ajax, you can use
the built-in
reload function. For example, you can make the call below in the callback of your Ajax:
zoomSlider.reload();