包详细信息

CSSMatrix

arian3010.1.1

A CSSMatrix shim for 3D tranformation matrices

自述文件

CSSMatrix

This is a CSSMatrix class as defined by the w3c CSS3 3d Transforms specification.

Installation

npm install CSSMatrix

Usage

It should be compatible with documentation defined at w3.org and at WebKitCSSMatrix Safari documentation.

Methods:

  • translate(x, y, z)
  • scale(x, y, z)
  • rotate(rx, ry, rz)
  • rotateAxisAngle(x, y, z, angle)
  • skewX(angle)
  • skewY(angle)
  • toString()
  • transform(tuple)
  • toFullString()

Properties:

  • m11 to m44. m12 is the second element in the first row.

Warning

Rotating matrices might yield into wrong results or results inconsistent with WebKitCSSMatrix.