From a3791ed2977bb711b7d6bb9fb8305cc350020f22 Mon Sep 17 00:00:00 2001 From: "Dr.XYZ" <121708493+Dr-XYZ@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:43:59 +0800 Subject: [PATCH] [zh-TW]: create API/SVGAnimatedBoolean/baseVal (#25019) --- .../api/svganimatedboolean/baseval/index.md | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 files/zh-tw/web/api/svganimatedboolean/baseval/index.md diff --git a/files/zh-tw/web/api/svganimatedboolean/baseval/index.md b/files/zh-tw/web/api/svganimatedboolean/baseval/index.md new file mode 100644 index 00000000000000..9173a91e260b55 --- /dev/null +++ b/files/zh-tw/web/api/svganimatedboolean/baseval/index.md @@ -0,0 +1,29 @@ +--- +title: SVGAnimatedBoolean:baseVal 屬性 +slug: Web/API/SVGAnimatedBoolean/baseVal +l10n: + sourceCommit: 53fd7ea4a4657b1b457ee582d7a28672319bf80a +--- + +{{APIRef("SVG")}} + +**`baseVal`** 是 {{domxref("SVGAnimatedBoolean")}} 介面的屬性,用於表示相關可動畫布林值 SVG 屬性在基礎(未動畫化)狀態下的值。當未應用動畫時,它反映相關可動畫布林值屬性的值。 + +某些布林值 SVG 屬性(例如 [`preserveAlpha`](/zh-TW/docs/Web/SVG/Attribute/preserveAlpha))是可動畫的。在這種情況下,當屬性設置為 `false`、被省略且預設為 `false`,或屬性為可繼承且繼承 `false` 時,`SVGAnimatedBoolean.baseVal` 的值為 `false`;否則,值為 `true`。 + +## 值 + +一個布林值;對應於反映屬性的基礎值。 + +## 規範 + +{{Specifications}} + +## 瀏覽器相容性 + +{{Compat}} + +## 參見 + +- {{domxref("SVGElement")}} +- {{domxref("SVGAnimationElement")}}