Created
December 26, 2024 14:58
-
-
Save pqoqubbw/983bc453255e28eb04749bc347c38401 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg width="300" height="300" viewBox="0 0 300 300"> | |
<defs> | |
<filter id="paperEffect"> | |
<feTurbulence | |
type="fractalNoise" | |
baseFrequency="0.04" | |
numOctaves="5" | |
result="noise" | |
/> | |
<feDiffuseLighting | |
in="noise" | |
lightingColor="#fff" | |
surfaceScale="2" | |
result="texture" | |
> | |
<feDistantLight azimuth="45" elevation="60" /> | |
</feDiffuseLighting> | |
<feTurbulence | |
type="turbulence" | |
baseFrequency="0.05" | |
numOctaves="3" | |
seed="5" | |
result="tornNoise" | |
/> | |
<feDisplacementMap | |
in="SourceGraphic" | |
in2="tornNoise" | |
scale="10" | |
xChannelSelector="R" | |
yChannelSelector="G" | |
result="tornEdges" | |
/> | |
<feBlend | |
in="texture" | |
in2="tornEdges" | |
mode="multiply" | |
result="combined" | |
/> | |
</filter> | |
</defs> | |
<rect | |
x="10" | |
y="10" | |
width="280" | |
height="280" | |
fill="#ffffff" | |
filter="url(#paperEffect)" | |
/> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://claude.site/artifacts/b6c946c6-0546-4aa9-a2ce-5d7b6fc633cc
https://codepen.io/imhalid/pen/WbeEomq