Firefox Tomorrow

web api instance property

SVGFEPointLightElement: z property

View on MDN ↗

The z read-only property of the SVGFEPointLightElement interface describes the z-axis value of the position of an SVG filter primitive as a SVGAnimatedNumber. A positive Z-axis comes out towards the person viewing the content.

It reflects the z attribute of the <fePointLight> element, which can be used to define the light source in a point light effect. The attribute is a <number>. The default value is 0.

Value

An SVGAnimatedNumber.

Example

const fePointLight = document.querySelector("fePointLight");
const zVal = fePointLight.z;
console.log(zVal.baseVal.value); // the `z` value

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also