SVGFEMorphologyElement: in1-Eigenschaft
        
        
          
                Baseline
                
                  Widely available
                
                
              
        
        
        
          
                
              
                
              
                
              
        
        
      
      This feature is well established and works across many devices and browser versions. It’s been available across browsers since Juli 2015.
Die in1-schreibgeschützte Eigenschaft des SVGFEMorphologyElement-Interfaces spiegelt das in-Attribut des angegebenen <feMorphology>-Elements wider.
Wert
Ein SVGAnimatedString-Objekt.
Beispiele
>Zugriff auf die in-Eigenschaft des feMorphology-Elements
    html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="morphologyFilter">
      <!-- Applies a morphology filter to the SourceGraphic -->
      <feMorphology in="SourceGraphic" operator="dilate" radius="2" />
    </filter>
  </defs>
  <rect
    x="20"
    y="20"
    width="100"
    height="100"
    fill="lightblue"
    filter="url(#morphologyFilter)" />
</svg>
Wir können auf das in-Attribut des feMorphology-Elements zugreifen.
js
// Select the feMorphology element
const morphologyNode = document.querySelector("feMorphology");
console.log(morphologyNode.in1.baseVal); // Output: "SourceGraphic"
Spezifikationen
| Specification | 
|---|
| Filter Effects Module Level 1> # dom-svgfemorphologyelement-in1> | 
Browser-Kompatibilität
Loading…