Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

interpolateTransformCss

Returns an interpolator between the two 2D CSS transforms represented by a and b. Each transform is decomposed to a standard representation of translate, rotate, x-skew and scale; these component transformations are then interpolated. This behavior is standardized by CSS: see matrix decomposition for animation.

function interpolateTransformCss(a: string, b: string): ((t: number) => string);
§
interpolateTransformCss(a: string, b: string): ((t: number) => string)
[src]

§Parameters

§
a: string
[src]
§
b: string
[src]

§Return Type

§
((t: number) => string)
[src]