files/en-us/web/api/dommatrix/skewyself/index.md
{{APIRef("Geometry Interfaces")}}{{AvailableInWorkers}}
The skewYSelf() method of the {{domxref("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 {{domxref("DOMMatrixReadOnly.skewY()")}}
skewYSelf()
skewYSelf(sY)
sY
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)"
{{Specifications}}
{{Compat}}
transform attribute