Documentation - v1.2.0-alpha.3
    Preparing search index...

    Represents an Animation Card.

    interface AnimationCard {
        aspect: string;
        autoloop: boolean;
        autostart: boolean;
        buttons: CardAction[];
        duration: string;
        image: ThumbnailUrl;
        media: MediaUrl[];
        shareable: boolean;
        subtitle: string;
        text: string;
        title: string;
        value: any;
    }
    Index

    Properties

    aspect: string

    The aspect ratio of the card.

    autoloop: boolean

    Indicates whether the card should auto-loop.

    autostart: boolean

    Indicates whether the card should auto-start.

    buttons: CardAction[]

    The buttons to be displayed on the card.

    duration: string

    The duration of the animation.

    The image to be displayed on the card.

    media: MediaUrl[]

    The media URLs or objects.

    shareable: boolean

    Indicates whether the card is shareable.

    subtitle: string

    The subtitle of the card.

    text: string

    The text content of the card.

    title: string

    The title of the card.

    value: any

    Additional value for the card.