SVGAnimatedEnumeration:baseVal 属性

baseValSVGAnimatedEnumeration 接口的属性,它包含 SVG 枚举的初始值。

包含枚举初始值的整数

示例

考虑以下包含 <clipPath> 元素的代码段:其 clipPathUnitsSVGAnimatedEnumeration 对象关联。

html
<svg viewBox="0 0 100 100" width="200" height="200">
  <clipPath id="clip1" clipPathUnits="userSpaceOnUse">
    <circle cx="50" cy="50" r="35" />
  </clipPath>

  <!-- Some reference rect to materialized to clip path -->
  <rect id="r1" x="0" y="0" width="45" height="45" />
</svg>

此代码段获取元素,并记录 SVGClipPathElement.clipPathUnits 属性的 baseVal

js
const clipPathElt = document.getElementById("clip1");
console.log(clipPathElt.clipPathUnits.baseVal); // Logs 1 that correspond to userSpaceOnUse

规范

规范
可缩放矢量图形 (SVG) 2
# __svg__SVGAnimatedEnumeration__baseVal

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅