pages/noise.svg

21 lines
733 B
XML
Raw Normal View History

<svg
xmlns='http://www.w3.org/2000/svg'
xmlns:xlink='http://www.w3.org/1999/xlink'
width='1000px' height='1000px'>
<filter id='n' x='0' y='0'>
<feTurbulence
type='fractalNoise'
baseFrequency='0.075'
stitchTiles='stitch'/>
<feComposite operator="in" in="myTurbulence" in2="SourceAlpha" result="myComposite"/>
<feColorMatrix in="myComposite" type="matrix"
values="1 1 1 0 0
1 1 1 0 0
1 1 1 0 1
0 0 0 1 0" />
</filter>
<rect width='1000px' height='1000px' fill='#000'/>
<rect width='1000px' height='1000px' filter="url(#n)" opacity='1.0'/>
</svg>