Trilium Frontend API
    Preparing search index...

    Interface SVGAnimatedEnumeration

    The SVGAnimatedEnumeration interface describes attribute values which are constants from a particular enumeration and which can be animated.

    MDN Reference

    interface SVGAnimatedEnumeration {
        animVal: number;
        baseVal: number;
    }
    Index

    Properties

    Properties

    animVal: number

    The animVal property of the SVGAnimatedEnumeration interface contains the current value of an SVG enumeration. If there is no animation, it is the same value as the baseVal.

    MDN Reference

    baseVal: number

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

    MDN Reference