Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. DOMMatrixReadOnly
  4. skewX()

DOMMatrixReadOnly: skewX() method

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⁩.

Note: This feature is available inWeb Workers.

TheskewX() method of theDOMMatrixReadOnly interface returns a newDOMMatrix created by applying the specified skew transformation to the source matrix along its x-axis. The original matrix is not modified.

To mutate the matrix as you skew it along the x-axis, seeDOMMatrix.skewXSelf().

Syntax

js
skewX()skewX(sX)

Parameters

sX

A number; the angle, in degrees, by which to skew the matrix along the x-axis.

Return value

ADOMMatrix.

Examples

js
const matrix = new DOMMatrix(); // create a matrixconsole.log(matrix.toString()); // no transform applied// "matrix(1, 0, 0, 1, 0, 0)"console.log(matrix.skewX(14).toString());// "matrix(1, 0, 0.25, 1, 0, 0)"console.log(matrix.toString()); // original is unchanged// "matrix(1, 0, 0, 1, 0, 0)"

Specifications

Specification
Geometry Interfaces Module Level 1
# dom-dommatrixreadonly-skewx

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp