Variable ActionsConst

Actions: {
    slideDown(this, n, opts?): void;
    slideIn(this, n, opts?): void;
    slideOut(this, n, opts?): void;
    slideUp(this, n, opts?): void;
} = ...

Type declaration

  • slideDown:function
    • Slides down to display this widget.

      Parameters

      • this: Widget<HTMLElement>
      • n: HTMLElement

        the node to display

      • Optional opts: SlideOptions

        the options. Allowed options:

        • `duration`: how many milliseconds to slide down

      Returns void

  • slideIn:function
    • Slides in to display this widget.

      Parameters

      • this: Widget<HTMLElement>
      • n: HTMLElement

        the node to display

      • Optional opts: SlideOptions

        the options. Allowed options:

        • `duration`: how many milliseconds to slide in

      Returns void

  • slideOut:function
    • Slides out to hide this widget.

      Parameters

      • this: Widget<HTMLElement>
      • n: HTMLElement

        the node to hide

      • Optional opts: SlideOptions

        the options. Allowed options:

        • `duration`: how many milliseconds to slide out

      Returns void

  • slideUp:function
    • Slides up to hide this widget.

      Parameters

      • this: Widget<HTMLElement>
      • n: HTMLElement

        the node to hide

      • Optional opts: SlideOptions

        the options. Allowed options:

        • `duration`: how many milliseconds to slide up

      Returns void

Since

5.0.6