pub type TimingFunction = ComputedTimingFunction;
Expand description

An alias of the computed timing function.

Aliased Type§

enum TimingFunction {
    Keyword(TimingKeyword),
    CubicBezier {
        x1: f32,
        y1: f32,
        x2: f32,
        y2: f32,
    },
    Steps(i32, StepPosition),
    LinearFunction(PiecewiseLinearFunction),
}

Variants§

§

Keyword(TimingKeyword)

linear | ease | ease-in | ease-out | ease-in-out

§

CubicBezier

Fields

§x1: f32
§y1: f32
§x2: f32
§y2: f32

cubic-bezier(<number>, <number>, <number>, <number>)

§

Steps(i32, StepPosition)

step-start | step-end | steps(<integer>, [ <step-position> ]?) <step-position> = jump-start | jump-end | jump-none | jump-both | start | end

§

LinearFunction(PiecewiseLinearFunction)

linear([]#) = && ? = {1, 2}

Trait Implementations§

source§

impl ToResolvedValue for TimingFunction

§

type ResolvedValue = TimingFunction<i32, f32, PiecewiseLinearFunction>

The resolved value type we’re going to be converted to.
source§

fn to_resolved_value(self, _: &Context<'_>) -> Self

Convert a resolved value to a resolved value.
source§

fn from_resolved_value(resolved: Self::ResolvedValue) -> Self

Convert a resolved value to resolved value form.