Note: This feature is available in Web Workers.
The CSSScale() constructor creates a new CSSScale object representing the scale() and scale3d() values of the individual transform property in CSS.
new CSSScale(x, y)
new CSSScale(x, y, z)xA value for the x-axis of the CSSScale object to be constructed. This must either be a number (which is wrapped into a CSSUnitValue of unit: "number") or a CSSNumericValue.
yA value for the y-axis of the CSSScale object to be constructed. This must either be a number (which is wrapped into a CSSUnitValue of unit: "number") or a CSSNumericValue.
z OptionalA value for the z-axis of the CSSScale object to be constructed. This must either be a number (which is wrapped into a CSSUnitValue of unit: "number") or a CSSNumericValue. If a value is passed, the value of is2D will be set to false.
To do