SVGFilterElement: filterUnits 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 filterUnits của giao diện SVGFilterElement phản ánh thuộc tính filterUnits 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 SVGAnimatedEnumeration.

Ví dụ

Truy cập thuộc tính filterUnits

html
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200">
  <defs>
    <filter
      id="myFilter"
      filterUnits="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 filterUnits property
console.log(filterElement.filterUnits.baseVal); // Output: 1 (SVG_UNIT_TYPE_USERSPACEONUSE)

Thông số kỹ thuật

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

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

Xem thêm