AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.5.1" />

.NET API 737,792 bytes

 CSSTimingValue

public abstract class CSSTimingValue : CSSValue
Represents a timing-function in CSS. http://dev.w3.org/csswg/css-transitions/#transition-timing-function
public sealed class CubicBezier : CSSTimingValue

Specifies a cubic-bezier curve.

public sealed class Steps : CSSTimingValue

Specifies a stepping function, described above, taking two parameters.

public static readonly CubicBezier Ease

Gets the pre-defined ease function.

public static readonly CubicBezier EaseIn

Gets the pre-defined ease-in function.

public static readonly CubicBezier EaseInOut

Gets the pre-defined ease-in-out function.

public static readonly CubicBezier EaseOut

Gets the pre-defined ease-out function.

public static readonly CubicBezier Linear

Gets the pre-defined linear function.

public static readonly Steps StepEnd

Gets the pre-defined step-end function.

public static readonly Steps StepStart

Gets the pre-defined step-start function.

protected CSSTimingValue()