SVGFEGaussianBlurElement: stdDeviationX 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 stdDeviationX của giao diện SVGFEGaussianBlurElement phản ánh thành phần X (có thể được tính toán tự động) của thuộc tính stdDeviation của phần tử <feGaussianBlur> đã cho.

Giá trị

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

Ví dụ

Truy cập thuộc tính stdDeviationX

html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="gaussian-blur-filter">
      <!-- Apply Gaussian Blur with stdDeviationX set to 5 and stdDeviationY set to 10 -->
      <feGaussianBlur
        in="SourceGraphic"
        stdDeviation="5 10"
        result="blurred-graphic" />
    </filter>
  </defs>

  <!-- Rectangle with a Gaussian blur effect -->
  <rect
    x="50"
    y="50"
    width="100"
    height="100"
    fill="hotpink"
    filter="url(#gaussian-blur-filter)" />
</svg>
js
// Select the feGaussianBlur element
const gaussianBlur = document.querySelector("feGaussianBlur");

// Access the stdDeviationX value
console.log(gaussianBlur.stdDeviationX.baseVal); // Output: 5

Thông số kỹ thuật

Thông số kỹ thuật
Filter Effects Module Level 1
# dom-svgfegaussianblurelement-stddeviationx

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

Xem thêm