Baseline Widely available
The edgeMode
read-only property of the SVGFEConvolveMatrixElement
interface reflects the edgeMode
attribute of the given <feConvolveMatrix>
element. The SVG_EDGEMODE_*
constants defined on this interface are represented by the numbers 1 through 3, where the default duplicate
is 1
, wrap
is 2
, and none
is 3
.
An SVGAnimatedEnumeration
object.
In this example, we retrieve the <feConvolveMatrix>
filter element's edgeMode
attribute value using the edgeMode
property of the SVGFEConvolveMatrixElement
interface.
If our SVG contains the following filter:
<feConvolveMatrix kernelMatrix="3 0 0 0 0 0 0 0 -4" id="el" edgeMode="wrap" />
We can access the number associated with the enumerated keyword value of the edgeMode
attribute of the feConvolveMatrix
element.
const el = document.getElementById("el");
console.log(el.edgeMode.baseVal); // output: 2
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4