-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathindex.html
28 lines (25 loc) · 1018 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>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>C. Elegans Sim</title>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<canvas id='canvas'></canvas>
<div id='nodeHolder'></div>
<label id="toggleConnectome" class="switch">
<input id="connectomeCheckbox" type="checkbox" checked onclick="toggleConnectome()">
<span class="slider round"></span>
</label>
<a href="https://github.com/Fantop/worm-sim">
<img id="githubButton" src="github.svg" class="noselect">
</a>
<div id="buttons">
<img id="centerButton" src="center.svg" height="40px" class="noselect">
<img id="clearButton" src="clear.svg" height="40px" class="noselect">
</div>
<script type="text/javascript" src="constants.js"></script>
<script type="text/javascript" src="connectome.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>