SVGFEColorMatrixElement: x Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Die x schreibgeschützte Eigenschaft des SVGFEColorMatrixElement-Interfaces beschreibt die horizontale Koordinate der Position eines SVG-Filterprimitivs als SVGAnimatedLength.

Sie spiegelt den Wert des <feColorMatrix>-Element-Attributs x des Filterprimitivs wider. Der <feColorMatrix>-Filter wendet eine Matrixtransformation auf die RGB-Farb- und Alpha-Werte an. Das Attribut ist ein <length> oder <percentage>. Das <coordinate> ist eine Länge im Benutzerkoordinatensystem, die den gegebenen Abstand vom Ursprung des Benutzerkoordinatensystems entlang der x-Achse darstellt. Wenn das x-Attribut einen Prozentwert hat, ist der Eigenschaftswert relativ zur Breite des Filterbereichs in Einheiten des Benutzerkoordinatensystems. Der Standardwert ist 0.

Wert

Beispiel

js
const feColorMatrix = document.querySelector("feColorMatrix");
const leftPosition = feColorMatrix.x;
console.log(leftPosition.baseVal.value); // the `x` value

Spezifikationen

Specification
Filter Effects Module Level 1
# dom-svgfilterprimitivestandardattributes-x

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch