diff --git a/files/en-us/web/api/svganimatedboolean/animval/index.md b/files/en-us/web/api/svganimatedboolean/animval/index.md new file mode 100644 index 000000000000000..b965d2a9ee31a85 --- /dev/null +++ b/files/en-us/web/api/svganimatedboolean/animval/index.md @@ -0,0 +1,30 @@ +--- +title: "SVGAnimatedBoolean: animVal property" +short-title: animVal +slug: Web/API/SVGAnimatedBoolean/animVal +page-type: web-api-instance-property +browser-compat: api.SVGAnimatedBoolean.animVal +--- + +{{APIRef("SVG")}} + +The **`animVal`** read-only property of the {{domxref("SVGAnimatedBoolean")}} interface represents the current animated value of the associated animatable boolean SVG attribute. If the attribute is not animated, `animVal` is the same as {{domxref("SVGAnimatedBoolean.baseVal")}}. + +Some boolean SVG attributes, such as [`preserveAlpha`](/en-US/docs/Web/SVG/Attribute/preserveAlpha), are animatable. In such cases, `SVGAnimatedBoolean.animVal` property is `true` when the attribute value resolves to true. Otherwise, the value is `false`. + +## Value + +A boolean; the value of the animatable boolean attribute. + +## Specifications + +{{Specifications}} + +## Browser compatibility + +{{Compat}} + +## See also + +- {{domxref("SVGElement")}} +- {{domxref("SVGAnimationElement")}} diff --git a/files/en-us/web/api/svganimatedboolean/baseval/index.md b/files/en-us/web/api/svganimatedboolean/baseval/index.md new file mode 100644 index 000000000000000..62311a29b6ba598 --- /dev/null +++ b/files/en-us/web/api/svganimatedboolean/baseval/index.md @@ -0,0 +1,30 @@ +--- +title: "SVGAnimatedBoolean: baseVal property" +short-title: baseVal +slug: Web/API/SVGAnimatedBoolean/baseVal +page-type: web-api-instance-property +browser-compat: api.SVGAnimatedBoolean.baseVal +--- + +{{APIRef("SVG")}} + +The **`baseVal`** property of the {{domxref("SVGAnimatedBoolean")}} interface is the value of the associated animatable boolean SVG attribute in its base (none-animated) state. It reflects the value of the associated animatable boolean attribute when no animations are applied. + +Some boolean SVG attributes, such as [`preserveAlpha`](/en-US/docs/Web/SVG/Attribute/preserveAlpha), are animatable. In such cases, `SVGAnimatedBoolean.baseVal` property is `false` when the attribute is set to `false`, is omitted and defaults to `false`, or is inheritable and inherits `false`. Otherwise, the value is `true`. + +## Value + +A boolean; the base value of the reflected attribute. + +## Specifications + +{{Specifications}} + +## Browser compatibility + +{{Compat}} + +## See also + +- {{domxref("SVGElement")}} +- {{domxref("SVGAnimationElement")}} diff --git a/files/en-us/web/api/svganimatedboolean/index.md b/files/en-us/web/api/svganimatedboolean/index.md index 4f2dc7c15a8525c..f14829c0546a673 100644 --- a/files/en-us/web/api/svganimatedboolean/index.md +++ b/files/en-us/web/api/svganimatedboolean/index.md @@ -27,7 +27,7 @@ The `SVGAnimatedBoolean` interface is used for attributes of type boolean which
baseVal
baseVal
animVal
baseVal
{{domxref("SVGAnimatedBoolean.baseVal")}}
animVal
{{domxref("SVGAnimatedBoolean.animVal")}}