-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
43 lines (34 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Verly Slime | Slime simulation made with Verlyjs.">
<meta name="keywords" content="Anurag hazra, verly, physics, slime, simulation, verlet" />
<meta name="author" content="Anurag Hazra" />
<title>Slime | Verly.js</title>
<script src="https://cdn.jsdelivr.net/gh/anuraghazra/Verly.js@1.3.0/dist/verly.bundle.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.6/dat.gui.min.js"
integrity="sha256-HJ7j+71YYw6Kcs8THwQV9lXmPOcR0eXlg7n8KRTZsyA=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119972196-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-119972196-1');
</script>
</head>
<body>
<canvas id="c"></canvas>
<div class="floating-ui">
<a class="link" target="__blank" href="https://anuraghazra.github.io/Verly.js/">Made With Verly.js</a>
</br>
<a class="link" target="__blank" href="https://github.com/anuraghazra/Slime">Source Code</a>
</div>
<script src="./js/Fluid.js"></script>
<script src="./js/index.js"></script>
</body>
</html>