-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 1.09 KB
/
Copy pathindex.html
File metadata and controls
49 lines (48 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebGL Fluid Simulation</title>
<script src="./dat.gui.min.js"></script>
<style>
*{
user-select: all;
}
html,body{
overflow: hidden;
background-color: black;
}
body{
margin: 0;
position: fixed;
width: 100%;
height: 100%;
}
.dg.ac{
display: none;
}
canvas{
width: 100%;
height: 100%;
}
</style>
<script>
window.ga =
window.ga ||
function () {
(ga.q = ga.q || []).push(arguments)
};
ga.l = +new Date();
ga('create', 'UA-162783829-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<canvas></canvas>
<div class="board">
<span class="board-close">×</span>
<script src="./script.js"></script>
</div>
</body>
</html>