OptionallimitOptionalnextNext slide transformations.
{
// Array with translate X, Y and Z values
translate: (string | number)[];
// Array with rotate X, Y and Z values (in deg)
rotate?: number[];
// Slide opacity
opacity?: number;
// Slide scale
scale?: number;
// Enables slide shadow
shadow?: boolean;
// Transform origin, e.g. `left bottom`
origin?: string;
}
OptionalperspectiveEnable this parameter if your custom transforms require 3D transformations (translateZ, rotateX, rotateY )
OptionalprevPrevious slide transformations. Accepts object of the following type:
{
// Array with translate X, Y and Z values
translate: (string | number)[];
// Array with rotate X, Y and Z values (in deg)
rotate?: number[];
// Slide opacity
opacity?: number;
// Slide scale
scale?: number;
// Enables slide shadow
shadow?: boolean;
// Transform origin, e.g. `left bottom`
origin?: string;
}
OptionalprogressAllows to multiply slides transformations and opacity.
OptionalshadowSplits shadow "opacity" per slide based on limitProgress (only if transformation shadows enabled). E.g. setting limitProgress: 2 and enabling shadowPerProgress, will set shadow opacity to 0.5 and 1 on two slides next to active. With this parameter disabled, all slides beside active will have shadow with 1 opacity
Limit progress/offset to amount of side slides. If
1, then slides all slides after prev/next will have same state. If2, then all slides after 2nd before/after active will have same state, etc.