SVGFilterElement: primitiveUnits property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Thuộc tính chỉ đọc primitiveUnits của giao diện SVGFilterElement phản ánh thuộc tính primitiveUnits của phần tử <filter> đã cho. Nó nhận một trong các hằng số SVG_UNIT_TYPE_* được định nghĩa trong SVGUnitTypes.

Giá trị

Một đối tượng SVGAnimatedEnumeration.

Ví dụ

Truy cập thuộc tính primitiveUnits

html
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200">
  <defs>
    <filter
      id="myFilter"
      primitiveUnits="userSpaceOnUse"
      x="0"
      y="0"
      width="200%"
      height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="15" result="blurred" />
    </filter>
  </defs>
  <rect
    width="200"
    height="200"
    stroke="green"
    stroke-width="10"
    fill="lime"
    filter="url(#myFilter)" />
</svg>
js
const filterElement = document.querySelector("filter");

// Access the primitiveUnits property
console.log(filterElement.primitiveUnits.baseVal); // Output: 1 (SVG_UNIT_TYPE_USERSPACEONUSE)

Thông số kỹ thuật

Specification
Filter Effects Module Level 1
# dom-svgfilterelement-primitiveunits

Tương thích trình duyệt

Xem thêm