lightgallery
Version:
lightGallery is a feature-rich, modular JavaScript gallery plugin for building beautiful image and video galleries for the web and the mobile
39 lines (38 loc) • 952 B
TypeScript
export interface AutoplayStrings {
toggleAutoplay: string;
}
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;
/**
* Custom translation strings for aria-labels
*/
autoplayPluginStrings: AutoplayStrings;
}
export declare const autoplaySettings: AutoplaySettings;