Skip to main content

SVGAnimatedAngle

The SVGAnimatedAngle interface is used for attributes of basic type <angle> which can be animated.

MDN Reference

Properties

animVal

readonly animVal: SVGAngle;

The animVal read-only property of the SVGAnimatedAngle interface represents the current animated value of the associated <angle> on an SVG element. If the attribute is not currently being animated, animVal will be the same as the baseVal.

MDN Reference


baseVal

readonly baseVal: SVGAngle;

The baseVal read-only property of the SVGAnimatedAngle interface represents the base (non-animated) value of the associated <angle> on an SVG element. This property is used to retrieve the static value of the <angle>, unaffected by any ongoing animations.

MDN Reference