SVGFEDisplacementMapElement: 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.

We'd love to hear more about your role and the company you work for
Please help us by answering a few questions.

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

Es spiegelt den Wert des Filterprimitivattributs x des <feDisplacementMap>-Elements wider. Das Attribut ist ein <length> oder <percentage>. Das <coordinate> ist eine Länge im Benutzokoordinatensystem, die die gegebene Entfernung vom Ursprung des Benutzokoordinatensystems entlang der x-Achse darstellt. Wenn das x-Attribut einen Prozentwert hat, bezieht sich der Eigenschaftswert auf die Breite des Filterbereichs in Benutzokoordinateneinheiten. Der Standardwert ist 0.

Wert

Beispiel

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

Spezifikationen

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

Browser-Kompatibilität

Siehe auch