The SVGAnimatedLength interface represents attributes of type <length> which can be animated.

MDN Reference

interface SVGAnimatedLength {
    animVal: SVGLength;
    baseVal: SVGLength;
}
Index

Properties

Properties

animVal: SVGLength

The animVal property of the SVGAnimatedLength interface contains the current value of an SVG enumeration.

MDN Reference

baseVal: SVGLength

The baseVal property of the SVGAnimatedLength interface contains the initial value of an SVG enumeration.

MDN Reference