-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 2.33 KB
/
index.html
File metadata and controls
55 lines (55 loc) · 2.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Matt's Graphics Tutorials</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="menu-header"><h1>Matt's Graphics Tutorials</h1></header>
<div class="menu-element">
<div>
<h3>Intro</h3>
<ul>
<li><a href="intro/workspace.html">Setting Up Your Workspace</a>: How to do these tutorials on your own</li>
<li><a href="intro/canvas.html">Drawing on the Canvas</a>: Where and how the magic happens</li>
</ul>
</div>
<img src="titlepictures/IntroIcon.png" class="category-icon">
</div>
<div class="menu-element">
<div>
<h3>Manipulating Colors</h3>
<ul>
<li><a href="colors/color.html">Color Arithmetic</a>: Adding, Subtracting, and performing operations on colors.</li>
<li><a href="colors/imagemath.html">Image Arithmetic</a>: More of the same, but with entire images.</li>
</ul>
</div>
<img width="128" height="128" class="category-icon" src="colors/images/HSLHLSquare.png">
</div>
<div class="menu-element">
<div>
<h3>Classic Effects</h3>
<ul>
<li><a href="effects/plasma.html">Plasma</a>: The classic plasma effect.</li>
<li><a href="effects/fire.html">Fire</a>: Much safer than the real thing.</li>
<li><a href="effects/tunnel.html">Tunnel Effect</a>: It practically looks 3D!</li>
</ul>
</div>
<img class="category-icon" src="titlepictures/EffectsIcon.png">
</div>
<div class="menu-element">
<div>
<h3>Texture Generation</h3>
<ul>
<li><a href="textures/xor.html">The XOR Texture</a>: A simple pattern that can come in handy.</li>
<li><a href="textures/noise.html">Generating Textures with Random Noise</a>: Clouds, Marble, Sand, Wood...</li>
</ul>
</div>
<img class="category-icon" width="128" height="128" src="textures/images/marbleExample.png">
</div>
<footer class="menu-footer"><noscript>These tutorials require Javascript to be enabled in order to work properly.</noscript><p>If you have any suggestions, or otherwise want to contribute in some way, feel free to <a href="https://github.com/InvisibleWater/MattGraphicsTutorials/issues" target="_blank">open an issue</a> in the repository.</p></footer>
</body>
</html>