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 skewYSelf() method of the DOMMatrix interface is a mutable transformation method that modifies a matrix. It skews the source matrix by applying the specified skew transformation along the Y-axis and returns the skewed matrix.
To skew a matrix along the Y-axis without mutating it, see DOMMatrixReadOnly.skewY()
skewYSelf() skewYSelf(sY)
sYA number; the angle, in degrees, by which to skew the matrix along the Y axis.
Returns itself; the DOMMatrix skewed along the Y-axis by the given angle.
const matrix = new DOMMatrix(); // create a matrix console.log(matrix.toString()); // output: "matrix(1, 0, 0, 1, 0, 0)" matrix.skewYSelf(-14); // mutate it console.log(matrix); // output: "matrix(1, -0.25, 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 | |
skewYSelf |
61 | 79 | 33 | 48 | 11 | 61 | 33 | 45 | 11 | 8.0 | 61 | 11 |
DOMMatrixReadOnly.skewY()transform property<transform-function> functions transform attributeCanvasRenderingContext2D interface methods
© 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/DOMMatrix/skewYSelf