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 Anwendung der angegebenen Scherungstransformation entlang ihrer y-Achse auf die Ursprungsmatrix erzeugt wird. Die Originalmatrix wird dabei nicht verändert.
Um die Matrix während der Scherung entlang der y-Achse zu verändern, siehe DOMMatrix.skewYSelf()
.
Syntax
skewY()
skewY(sY)
Parameter
sY
-
Eine Zahl; der Winkel in Grad, um den die Matrix entlang der y-Achse geschert 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
Siehe auch
DOMMatrix.skewYSelf()
DOMMatrixReadOnly.skewX()
- CSS
transform
-Eigenschaft und dieskew()
,skewY()
undmatrix()
Funktionen - CSS-Transformationen Modul
- SVG
transform
Attribut CanvasRenderingContext2D
Interface und dessentransform()
Methode