-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
28 lines (25 loc) · 827 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
<!DOCTYPE html>
<html style="height: 100%">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body style="height: 100%; margin: 0">
<span id="donate-button">Thank you! 😊</span>
<span id="warning-message"></span>
<div id="wait-indicator" class="center-spinner">
<div aria-hidden="true" class="spinner-wrapper">
<div class="spinner">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<canvas id="graph2d" style="width: 100vw; height: 100vh"></canvas>
<script type="text/javascript">
require('./renderer.js')
</script>
</body>
</html>