The webkit-transform properties provide some easy-to-use functions for the most common operations (such as rotate, scale, skew and translate) and a function to specify a generic transformation (matrix).
CSS property: -webkit-transform
Description Specifies transformations to be applied to an element.
The -webkit-transform property specifies a list of transformations, separated by whitespace, to be applied to an element, such as rotation, scaling, and so on.
The set of transform functions is similar to those allowed by SVG, although there are additional functions to support 3D transformations. If multiple transforms are applied, the transform is generated by performing a matrix concatenation of each transform in the list.
Syntax:
-webkit-transform:translate(dx,dy);
-webkit-transform:scale(sx,sy);
-webkit-transform:rotate(r);
-webkit-transform:translate(dx,dy) scale(sx,sy) rotate(r);
links: