Open In App

SVG FETurbulenceElement.type Attribute

Last Updated : 31 Mar, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The SVG FETurbulenceElement.type property returns the SVGAnimatedEnumeration object corresponding to the type component of the FETurbulencee.type element.

Syntax:

var a = FETurbulenceElement.type

Return value: This property returns the SVGAnimatedEnumeration object corresponding to the type component of the FETurbulencee.type element.

Example 1: 

HTML




<!DOCTYPE html> 
<html
  
<body
  
    <svg width="200" height="200"
        viewBox="0 0 220 220"
  
        <filter id="FillPaint"
  
            <feTurbulence id='gfg' type="turbulence"
                baseFrequency="0.5" numOctaves="2"
                seed="5" stitchTiles="stitch" /> 
  
            <feDisplacementMap in2="turbulence"
                in="SourceGraphic" scale="50"
                xChannelSelector="B"
                yChannelSelector="B" /> 
  
        </filter
          
        <rect width="200" height="200"
            style=" fill:green; 
            filter: url(#FillPaint);" />
               
        <script type="text/javascript">
            var g = document.getElementById("gfg");
            console.log(g.type);
            console.log("type value is :", 
                g.type.baseVal);
        </script
    </svg
</body
  
</html>


Output:

Example 2: 

HTML




<!DOCTYPE html> 
<html
  
<body
  
    <svg width="400" height="400"
        viewBox="0 0 250 250"
  
        <filter id="FillPaint"
  
            <feTurbulence id="gfg" type="fractalNoise"
                baseFrequency="2" numOctaves="2"
                seed="1" stitchTiles="stitch"
                result="turbulence" /> 
  
            <feDisplacementMap in2="turbulence"
                in="SourceGraphic" scale="50"
                xChannelSelector="B"
                yChannelSelector="B" /> 
  
        </filter
          
        <ellipse cx="100" cy="60" rx="100"
            ry="50" style=" fill: green; 
            filter: url(#FillPaint);" /> 
        <script type="text/javascript">
            var g = document.getElementById("gfg");
            console.log(g.type);
            console.log("type value is :", 
                g.type.baseVal);
        </script>
    </svg
</body
  
</html>


Output:

Supported Browsers:

  • Google Chrome
  • Edge
  • Firefox
  • Safari
  • Opera
  • Internet Explorer


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads