This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Note: This feature is available in Web Workers.
The scale3d() method of the DOMMatrixReadOnly interface creates a new matrix which is the result of a 3D scale transform being applied to the matrix. It returns a new DOMMatrix created by scaling the source 3d matrix by the given scale factor centered on the origin point specified by the origin parameters, with a default origin of (0, 0, 0). The original matrix is not modified.
To mutate the matrix as you 3D-scale it, see DOMMatrix.scale3dSelf()
scale3d() scale3d(scale) scale3d(scale, originX) scale3d(scale, originX, originY) scale3d(scale, originX, originY, originZ)
scaleA multiplier; the scale value. If no scale is supplied, this defaults to 1.
originX OptionalAn x-coordinate for the origin of the transformation. If no origin is supplied, this defaults to 0.
originY OptionalA y-coordinate for the origin of the transformation. If no origin is supplied, this defaults to 0.
originZ OptionalA z-coordinate for the origin of the transformation. If this value is 0, the default if omitted, the resulting matrix may not be 3d.
A DOMMatrix.
const matrix = new DOMMatrix();
console.log(matrix.toString()); // no transforms applied
// matrix(1, 0, 0, 1, 0, 0)
console.log(matrix.scale3d(2).toString());
/* matrix3d(
2, 0, 0, 0,
0, 2, 0, 0,
0, 0, 2, 0,
0, 0, 0, 1) */
console.log(matrix.scale3d(0.5, 25, 25, 1.25).toString());
/* matrix3d(
0.5, 0, 0, 0,
0, 0.5, 0, 0,
0, 0, 0.5, 0, 1
2.5, 12.5, 0.625, 1) */
console.log(matrix.toString()); // original matrix is unchanged
// matrix(1, 0, 0, 1, 0, 0)
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
scale3d |
61 | 79 | 33Starting in Firefox 69, the first parameter (scale) is now optional with a default value of 1, per the specification. Previously it was required. |
48 | 11 | 61 | 33Starting in Firefox for Android 79, the first parameter (scale) is now optional with a default value of 1, per the specification. Previously it was required. |
45 | 11 | 8.0 | 61 | 11 |
DOMMatrix.scale3dSelf()DOMMatrixReadOnly.scale()transform property and scale3d() and matrix3d() functionstransform attributeCanvasRenderingContext2D interface's CanvasRenderingContext2D.transform() method
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrixReadOnly/scale3d