lightgallery
Version:
lightGallery is a feature-rich, modular JavaScript gallery plugin for building beautiful image and video galleries for the web and the mobile
32 lines (31 loc) • 770 B
TypeScript
export interface AutoplaySettings {
/**
* Enable autoplay plugin
*/
autoplay: boolean;
/**
* Enable slideshow autoplay
*/
slideShowAutoplay: boolean;
/**
* The time (in ms) between each auto transition.
*/
slideShowInterval: number;
/**
* Show autoplay progressBar
*/
progressBar: boolean;
/**
* If false autoplay will be stopped after first user action
*/
forceSlideShowAutoplay: boolean;
/**
* Show/hide autoplay controls.
*/
autoplayControls: boolean;
/**
* Specify where the autoplay controls should be appended.
*/
appendAutoplayControlsTo: string;
}
export declare const autoplaySettings: AutoplaySettings;