pages/noise.svg
riviera 3f41e9ead9 Second Commit
Added Index, stylesheet and two images
2024-10-05 22:33:57 +00:00

21 lines
733 B
XML

<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>