@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface CarouselItemStyle

    Style values applied to each carousel item by a CarouselStrategy.

    Every property is optional — the component applies only the properties that the strategy returns.

    interface CarouselItemStyle {
        filter?: string;
        opacity?: number;
        pointerEvents?: "none" | "auto";
        transform?: string;
        transition?: string;
        zIndex?: number;
    }
    Index

    Properties

    filter?: string
    opacity?: number
    pointerEvents?: "none" | "auto"
    transform?: string
    transition?: string
    zIndex?: number