Pathfinder 1e for Foundry VTT
    Preparing search index...

    Function slideDown

    • Animate a DOM element to slide into view.

      Parameters

      • root: Node | Node[] | NodeList

        The element(s) to be slid up

      • options: {
            addClass?: string;
            animate?: boolean;
            callback?: Function;
            duration?: number;
            removeClass?: string;
        } = {}

        A list of options.

        • OptionaladdClass?: string

          A class to add to the element at the end of the animation

        • Optionalanimate?: boolean

          Indicate whether animation should be skipped or executed

        • Optionalcallback?: Function

          A callback to execute at the end of the animation

        • Optionalduration?: number

          Duration in milliseconds for the animation to last. Calculated based on element height if not explicitly provided.

        • OptionalremoveClass?: string

          A class to remove from the element at the end of the animation

      Returns void