web api instance property
SVGFEPointLightElement: y property
The y read-only property of the SVGFEPointLightElement interface describes the vertical coordinate of the position of an SVG filter primitive as a SVGAnimatedNumber.
It reflects the y 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
Example
const fePointLight = document.querySelector("fePointLight");
const topPosition = fePointLight.y;
console.log(topPosition.baseVal.value); // the `y` value
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.