SVGAnimatedTransformList.baseVal Eigenschaft
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Die baseVal
-Eigenschaft der Schnittstelle SVGAnimatedTransformList
ist eine schreibgeschützte Eigenschaft, die den nicht-animierten Wert des transform
-Attributs eines SVG-Elements darstellt.
Diese Eigenschaft spiegelt das
-Attribut des SVG-Elements wider, das Attribut transform
des gradientTransform
<linearGradient>
- oder <radialGradient>
-Elements oder das
-Attribut des patternTransform
<pattern>
-Elements als ein schreibgeschütztes SVGTransformList
wider und bietet Zugriff auf ein statisches SVGTransform
für jede auf dem SVG-Element festgelegte Transformationsfunktion.
Wert
Ein SVGTransformList
Objekt, das den aktuellen, nicht-animierten Wert des transform
-Attributs darstellt.
Beispiele
// Get the rectangle element
const rect = document.querySelector("rect");
// Access the non-animated transform list of the element
const baseTransforms = rect.transform.baseVal;
// Log the base transforms to the console
console.dir(baseTransforms);
Spezifikationen
Specification |
---|
Scalable Vector Graphics (SVG) 2 # __svg__SVGAnimatedTransformList__baseVal |
Browser-Kompatibilität
BCD tables only load in the browser