-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 923 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Metaballs" />
<meta property="og:description" content="A simple metaballs demo" />
<meta property="og:image" content="https://metaballs.pkozak.org/docs/marchingSquaresLerp.png" />
<meta property="og:url" content="https://metaballs.pkozak.org" />
<meta property="og:type" content="website" />
<meta property="autor" content="Piotr Kozak" />
<title>Metaballs</title>
</head>
<body>
<span id="fps">FPS: N/A</span>
<canvas></canvas>
<footer>
<a href="https://pkozak.org">My website</a>
<a href="https://github.com/UltimateDoge5/Metaballs">Code</a>
</footer>
<script type="module" src="/src/main.ts"></script>
<span id="tip">
Press <kbd>r</kbd> to reset<br />
Press <kbd>f</kbd> to toggle fullscreen<br />
</span>
</body>
</html>