Type Definition style::values::specified::transform::Transform
[−]
[src]
type Transform = GenericTransform<TransformOperation>;
A specified CSS transform
Methods
impl Transform
[src]
pub fn parse_prefixed<'i, 't>(
context: &ParserContext,
input: &mut Parser<'i, 't>
) -> Result<Self, ParseError<'i>>
[src]
context: &ParserContext,
input: &mut Parser<'i, 't>
) -> Result<Self, ParseError<'i>>
Parses -moz-transform
property. This prefixed property also accepts LengthOrPercentage
in the nondiagonal homogeneous components of matrix and matrix3d.
Trait Implementations
impl Parse for Transform
[src]
fn parse<'i, 't>(
context: &ParserContext,
input: &mut Parser<'i, 't>
) -> Result<Self, ParseError<'i>>
[src]
context: &ParserContext,
input: &mut Parser<'i, 't>
) -> Result<Self, ParseError<'i>>
Parse a value of this type. Read more