Table of Contents

Class TransitionTiming

Namespace
BlazOrbit.Components
Assembly
BlazOrbit.Core.dll

Per-entry CSS transition timing parameters (delay, duration, easing).

public class TransitionTiming
Inheritance
object
TransitionTiming

Constructors

TransitionTiming()

public TransitionTiming()

Properties

Delay

Optional delay before the transition starts.

public TimeSpan? Delay { get; set; }

Property Value

TimeSpan?

Duration

Optional duration of the transition.

public TimeSpan? Duration { get; set; }

Property Value

TimeSpan?

Easing

Optional configuration callback to build the CSS easing function.

public Action<EasingBuilder>? Easing { get; set; }

Property Value

Action<EasingBuilder>