For the complete documentation index, see llms.txt. This page is also available as Markdown.

New-UDTransition

Creates a transition effect.

Synopsis

Creates a transition effect.

Syntax

New-UDTransition [-Id <String>] [-Collapse] [-CollapseHeight <Int32>] -Children <ScriptBlock> [-In] [-Timeout <Int32>] [-Style <Hashtable>] [-MountOnEnter] [-UnmountOnExit] [<CommonParameters>]

    New-UDTransition [-Id <String>] [-Fade] -Children <ScriptBlock> [-In] [-Timeout <Int32>] [-Style <Hashtable>] [-MountOnEnter] [-UnmountOnExit] [<CommonParameters>]

    New-UDTransition [-Id <String>] [-Grow] -Children <ScriptBlock> [-In] [-Timeout <Int32>] [-Style <Hashtable>] [-MountOnEnter] [-UnmountOnExit] [<CommonParameters>]

    New-UDTransition [-Id <String>] [-Slide] [-SlideDirection <String>] -Children <ScriptBlock> [-In] [-Timeout <Int32>] [-Style <Hashtable>] [-MountOnEnter] [-UnmountOnExit] [<CommonParameters>]

    New-UDTransition [-Id <String>] [-Zoom] -Children <ScriptBlock> [-In] [-Timeout <Int32>] [-Style <Hashtable>] [-MountOnEnter] [-UnmountOnExit] [<CommonParameters>]

Description

Creates a transition effect.

Parameters

-Id

The ID of this component.

-CollapseHeight

The height of the content when collapsed.

-SlideDirection

The direction of the slide transition.

-Children

The content or children to transition.

-Timeout

The number of milliseconds it takes to transition.

-Style

A hashtable of CSS styles to apply to the transition.

Outputs

-------------------------- EXAMPLE 1 --------------------------

Last updated

Was this helpful?