Skip to content

Instantly share code, notes, and snippets.

@azaek
Created November 22, 2022 16:40
Show Gist options
  • Save azaek/2bceddc4a86c2182a9ef0ed56456d90b to your computer and use it in GitHub Desktop.
Save azaek/2bceddc4a86c2182a9ef0ed56456d90b to your computer and use it in GitHub Desktop.
Noise svg
<svg className='w-full h-full' viewBox="0 0 100% 100%" xmlns='http://www.w3.org/2000/svg'>
<filter id='noiseFilter'>
<feTurbulence
baseFrequency='0.65 0.4'
numOctaves='3'
result='NOISE' />
</filter>
<rect width='100%' height='100%' filter='url(#noiseFilter)' />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment