Trilium Frontend API
    Preparing search index...

    Interface SVGAnimatedInteger

    The SVGAnimatedInteger interface is used for attributes of basic type which can be animated.

    MDN Reference

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

    Properties

    Properties

    animVal: number

    The animVal property of the SVGAnimatedInteger interface represents the animated value of an . If no animation is applied, animVal equals baseVal.

    MDN Reference

    baseVal: number

    The baseVal property of the SVGAnimatedInteger interface represents the base (non-animated) value of an animatable .

    MDN Reference