SVGFEPointLightElement: 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 schreibgeschützte x-Eigenschaft des SVGFEPointLightElement-Interfaces beschreibt die horizontale Koordinate der Position eines SVG-Filterprimitives als SVGAnimatedNumber.

Sie spiegelt das x Attribut des <fePointLight>-Elements wider, das verwendet werden kann, um die Lichtquelle in einem Punktlichteffekt zu definieren. Das Attribut ist ein <number>. Der Standardwert ist 0.

Wert

Beispiel

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

Spezifikationen

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

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch