SVGFEImageElement: width-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 schreibgeschützte width-Eigenschaft der Schnittstelle SVGFEImageElement beschreibt die horizontale Größe eines SVG-Filter-Primitivelements als SVGAnimatedLength.

Sie spiegelt das width-Attribut des <feImage>-Elements wider, das Bilddaten aus einer externen Quelle abruft und die Pixeldaten als Ausgabe bereitstellt. Das Attribut ist eine <length> oder ein <percentage> relativ zur Breite der Filterregion. Der Standardwert ist 100%. Der Eigenschaftswert ist eine Länge in Einheiten des Benutzerskoordinatensystems.

Wert

Beispiel

js
const feImage = document.querySelector("feImage");
const horizontalSize = feImage.width;
console.log(horizontalSize.baseVal.value); // the `width` value

Spezifikationen

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

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch