-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (57 loc) · 1.59 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SVGフィルター作例集 目次</title>
<style>
body {
font-family: sans-serif;
}
</style>
</head>
<body>
<h1>SVGフィルター作例集 目次</h1>
<ul>
<li>
<a href="src/rough-filter.html">ざらざらノイズフィルター</a>
</li>
<li>
<a href="src/glass-filter.html">ガラス風フィルター</a>
</li>
<li>
<a href="src/distortion-filter.html">ゆれフィルター</a>
</li>
<li>
<a href="src/paper-filter.html">和紙っぽいフィルター</a>
</li>
<li>
<a href="src/posterization-filter.html">ポスタリゼーション</a>
</li>
<li>
<a href="src/glitch-filter.html">グリッチノイズフィルター</a>
</li>
<li>
<a href="src/pixel-art-filter.html">ドット絵風フィルター</a>
</li>
<li>
<a href="src/dotgain-filter.html">新聞の写真風フィルター</a>
</li>
<li>
<a href="src/stripe-filter.html">ストライプなフィルター</a>
</li>
<li>
<a href="src/filter-test.html">SVGフィルターの検証</a>
</li>
<li>
<a href="src/color.html">feFuncXのtableValues生成ツール</a>
</li>
</ul>
<section>
<h2>参考:フィルター適用前の画像</h2>
<img src="src/images/image-1.jpg" width="512" height="384" alt="" class="image">
<img src="src/images/image-2.jpg" width="480" height="640" alt="" class="image">
<img src="src/images/image-3.jpg" width="512" height="512" alt="" class="image">
</section>
</body>
</html>