44 lines
1.0 KiB
HTML
Executable File
44 lines
1.0 KiB
HTML
Executable File
<html>
|
|
|
|
<head>
|
|
<title>SVG Image</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<svg height="800" width="800">
|
|
<defs>
|
|
<filter id="flou">
|
|
<feGaussianBlur stdDeviation="5"/>
|
|
</filter>
|
|
<filter id="couleur">
|
|
<feColorMatrix
|
|
type="matrix"
|
|
values="0 0 1 0 0
|
|
0 1 0 0 0
|
|
1 0 0 0 0
|
|
0 0 0 1 0 "/>
|
|
</filter>
|
|
|
|
<filter id="squiggly">
|
|
<feTurbulence baseFrequency="0.02"
|
|
numOctaves="3" result="noise" seed="2"/>
|
|
<feDisplacementMap in="SourceGraphic"
|
|
in2="noise" scale="10" />
|
|
<feDropShadow dx="4" dy="8" stdDeviation="4"/>
|
|
</filter>
|
|
</defs>
|
|
|
|
<image xlink:href="lion.jfif" x="0" y="0"
|
|
height="400" width="200"
|
|
filter="url(#flou)"/>
|
|
|
|
<image xlink:href="lion.jfif" x="400" y="0"
|
|
height="400" width="200"
|
|
filter="url(#couleur)"/>
|
|
|
|
<text y="100" font-size="80" filter="url(#squiggly)">Lion</text>
|
|
</svg>
|
|
|
|
</html>
|