DOMMatrixReadOnly: skewY() Methode
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Hinweis: Diese Funktion ist in Web Workers verfügbar.
Die skewY()
-Methode des DOMMatrixReadOnly
-Interfaces gibt eine neue DOMMatrix
zurück, die durch Anwenden der angegebenen Schertransformation entlang der y-Achse der Quellmatrix erstellt wurde. Die ursprüngliche Matrix wird nicht verändert.
Um die Matrix während der Scherung entlang der y-Achse zu ändern, siehe DOMMatrix.skewYSelf()
.
Syntax
skewY()
skewY(sY)
Parameter
sY
-
Eine Zahl; der Winkel in Grad, um den die Matrix entlang der y-Achse verzerrt werden soll.
Rückgabewert
Eine DOMMatrix
.
Beispiele
const matrix = new DOMMatrix(); // create a matrix
console.log(matrix.toString()); // original value
// "matrix(1, 0, 0, 1, 0, 0)"
console.log(matrix.skewY(14).toString()); // skew along y-axis
// "matrix(1, -0.25, 0, 1, 0, 0)"
console.log(matrix.toString()); // original unchanged
// "matrix(1, 0, 0, 1, 0, 0)"
Spezifikationen
Specification |
---|
Geometry Interfaces Module Level 1 # dom-dommatrixreadonly-skewy |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
DOMMatrix.skewYSelf()
DOMMatrixReadOnly.skewX()
- CSS
transform
Eigenschaft und dieskew()
,skewY()
, undmatrix()
Funktionen - CSS-Transformationen Modul
- SVG
transform
Attribut CanvasRenderingContext2D
Interface Methodetransform()